metaforce/Runtime/Character/CMetaTransPhaseTrans.hpp

29 lines
729 B
C++
Raw Normal View History

2016-04-13 06:07:23 +00:00
#ifndef __URDE_CMETATRANSPHASETRANS_HPP__
#define __URDE_CMETATRANSPHASETRANS_HPP__
2016-04-10 21:22:59 +00:00
#include "IMetaTrans.hpp"
#include "IOStreams.hpp"
namespace urde
{
class CMetaTransPhaseTrans : public IMetaTrans
{
2016-04-11 03:59:54 +00:00
float x4_;
u32 x8_;
bool xc_;
bool xd_;
u32 x10_;
2016-04-10 21:22:59 +00:00
public:
CMetaTransPhaseTrans(CInputStream& in);
EMetaTransType GetType() const {return EMetaTransType::PhaseTrans;}
std::shared_ptr<CAnimTreeNode> VGetTransitionTree(const std::weak_ptr<CAnimTreeNode>& a,
const std::weak_ptr<CAnimTreeNode>& b,
const CAnimSysContext& animSys) const;
};
}
2016-04-13 06:07:23 +00:00
#endif // __URDE_CMETATRANSPHASETRANS_HPP__