Files

17 lines
426 B
C++
Raw Permalink Normal View History

2023-01-11 16:34:08 -08:00
#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