metaforce/Runtime/Character/CMetaTransMetaAnim.hpp

24 lines
650 B
C++
Raw Normal View History

2016-04-10 21:22:59 +00:00
#ifndef __PSHAG_CMETATRANSMETAANIM_HPP__
#define __PSHAG_CMETATRANSMETAANIM_HPP__
#include "IMetaTrans.hpp"
#include "IOStreams.hpp"
namespace urde
{
class CMetaTransMetaAnim : public IMetaTrans
{
public:
CMetaTransMetaAnim(CInputStream& in);
EMetaTransType GetType() const {return EMetaTransType::MetaAnim;}
std::shared_ptr<CAnimTreeNode> VGetTransitionTree(const std::weak_ptr<CAnimTreeNode>& a,
const std::weak_ptr<CAnimTreeNode>& b,
const CAnimSysContext& animSys) const;
};
}
#endif // __PSHAG_CMETATRANSMETAANIM_HPP__