2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 01:11:20 +00:00
metaforce/Runtime/Character/CMetaTransPhaseTrans.hpp
2016-04-10 11:22:59 -10:00

24 lines
662 B
C++

#ifndef __PSHAG_CMETATRANSPHASETRANS_HPP__
#define __PSHAG_CMETATRANSPHASETRANS_HPP__
#include "IMetaTrans.hpp"
#include "IOStreams.hpp"
namespace urde
{
class CMetaTransPhaseTrans : public IMetaTrans
{
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;
};
}
#endif // __PSHAG_CMETATRANSPHASETRANS_HPP__