metaforce/Runtime/Character/CMetaTransPhaseTrans.cpp

23 lines
538 B
C++
Raw Normal View History

2016-04-10 21:22:59 +00:00
#include "CMetaTransPhaseTrans.hpp"
namespace urde
{
CMetaTransPhaseTrans::CMetaTransPhaseTrans(CInputStream& in)
{
2016-04-11 03:59:54 +00:00
x4_ = in.readFloatBig();
x8_ = in.readUint32Big();
xc_ = in.readBool();
xd_ = in.readBool();
x10_ = in.readUint32Big();
2016-04-10 21:22:59 +00:00
}
std::shared_ptr<CAnimTreeNode>
CMetaTransPhaseTrans::VGetTransitionTree(const std::weak_ptr<CAnimTreeNode>& a,
const std::weak_ptr<CAnimTreeNode>& b,
const CAnimSysContext& animSys) const
{
}
}