mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 01:51:22 +00:00
14 lines
228 B
C++
14 lines
228 B
C++
#include "CHalfTransition.hpp"
|
|
#include "CMetaTransFactory.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
CHalfTransition::CHalfTransition(CInputStream& in)
|
|
{
|
|
x0_id = in.readUint32Big();
|
|
x4_trans = CMetaTransFactory::CreateMetaTrans(in);
|
|
}
|
|
|
|
}
|