Match and link CTransitionManager

Former-commit-id: dbc36c5b23
This commit is contained in:
2023-01-11 16:34:08 -08:00
parent 65efa56f99
commit 40b9efd47f
5 changed files with 65 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
#ifndef _CTRANSITIONMANAGER
#define _CTRANSITIONMANAGER
#include "Kyoto/Animation/CAnimSysContext.hpp"
class CAnimTreeNode;
class CTransitionManager {
public:
rstl::rc_ptr< CAnimTreeNode > GetTransitionTree(const rstl::ncrc_ptr< CAnimTreeNode >& a,
const rstl::ncrc_ptr< CAnimTreeNode >& b) const;
private:
CAnimSysContext x0_context;
};
#endif // _CTRANSITIONMANAGER