metaforce/Runtime/Character/CTreeUtils.hpp

20 lines
429 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-09-04 02:27:35 +00:00
#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:
2018-01-30 01:04:01 +00:00
static std::shared_ptr<CAnimTreeNode> GetTransitionTree(const std::weak_ptr<CAnimTreeNode>& a,
const std::weak_ptr<CAnimTreeNode>& b,
2016-09-04 02:27:35 +00:00
const CAnimSysContext& animCtx);
};
}