2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 04:27:42 +00:00

Several CAnimData integrations

This commit is contained in:
Jack Andersen
2016-09-03 16:27:35 -10:00
parent c29013ba89
commit a349076740
37 changed files with 721 additions and 174 deletions

View File

@@ -0,0 +1,14 @@
#include "CTransitionManager.hpp"
#include "CTreeUtils.hpp"
namespace urde
{
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);
}
}