prime/include/Kyoto/Animation/CTransitionManager.hpp
Phillip Stephens 40b9efd47f Match and link CTransitionManager
Former-commit-id: dbc36c5b231662d316c17cc6fe8ad965c4c52a96
2023-01-11 16:34:08 -08:00

17 lines
426 B
C++

#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