2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 07:11:20 +00:00
metaforce/Runtime/Character/CTransitionManager.hpp
2018-10-06 17:42:33 -10:00

24 lines
521 B
C++

#pragma once
#include "CToken.hpp"
#include "CAnimSysContext.hpp"
namespace urde
{
class CTransitionDatabaseGame;
class CRandom16;
class CSimplePool;
class CAnimTreeNode;
class CTransitionManager
{
CAnimSysContext x0_animCtx;
public:
CTransitionManager(const CAnimSysContext& sysCtx) : x0_animCtx(sysCtx) {}
std::shared_ptr<CAnimTreeNode> GetTransitionTree(const std::shared_ptr<CAnimTreeNode>& a,
const std::shared_ptr<CAnimTreeNode>& b) const;
};
}