metaforce/Runtime/Character/CTreeUtils.hpp

22 lines
518 B
C++
Raw Normal View History

2016-09-04 02:27:35 +00:00
#ifndef __URDE_CTREEUTILS_HPP__
#define __URDE_CTREEUTILS_HPP__
#include "RetroTypes.hpp"
namespace urde
{
class CAnimTreeNode;
2016-09-11 01:25:59 +00:00
struct CAnimSysContext;
2016-09-04 02:27:35 +00:00
class CTreeUtils
{
public:
static std::shared_ptr<CAnimTreeNode> GetTransitionTree(const std::shared_ptr<CAnimTreeNode>& a,
const std::shared_ptr<CAnimTreeNode>& b,
const CAnimSysContext& animCtx);
};
}
#endif // __URDE_CTREEUTILS_HPP__