metaforce/Runtime/Character/CTransitionManager.hpp

24 lines
521 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-04-13 06:07:23 +00:00
#include "CToken.hpp"
#include "CAnimSysContext.hpp"
namespace urde
{
2016-04-13 06:07:23 +00:00
class CTransitionDatabaseGame;
class CRandom16;
class CSimplePool;
2016-09-04 02:27:35 +00:00
class CAnimTreeNode;
class CTransitionManager
{
2016-04-13 06:07:23 +00:00
CAnimSysContext x0_animCtx;
public:
CTransitionManager(const CAnimSysContext& sysCtx) : x0_animCtx(sysCtx) {}
2016-09-04 02:27:35 +00:00
std::shared_ptr<CAnimTreeNode> GetTransitionTree(const std::shared_ptr<CAnimTreeNode>& a,
const std::shared_ptr<CAnimTreeNode>& b) const;
};
}