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