Files

13 lines
435 B
C++
Raw Permalink Normal View History

2020-01-15 07:07:48 -05:00
#include "Runtime/Character/CTransitionManager.hpp"
#include "Runtime/Character/CTreeUtils.hpp"
2016-09-03 16:27:35 -10:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2016-09-03 16:27:35 -10:00
2018-12-07 19:30:43 -10:00
std::shared_ptr<CAnimTreeNode> CTransitionManager::GetTransitionTree(const std::shared_ptr<CAnimTreeNode>& a,
const std::shared_ptr<CAnimTreeNode>& b) const {
return CTreeUtils::GetTransitionTree(a, b, x0_animCtx);
2016-09-03 16:27:35 -10:00
}
2021-04-10 01:42:06 -07:00
} // namespace metaforce