2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 22:31:21 +00:00
metaforce/Runtime/Character/CTransitionManager.hpp
2018-12-07 19:30:43 -10:00

22 lines
531 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;
};
} // namespace urde