metaforce/Runtime/Character/CTransitionManager.cpp

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

#include "Runtime/Character/CTransitionManager.hpp"
#include "Runtime/Character/CTreeUtils.hpp"
2016-09-03 19:27:35 -07:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2016-09-03 19:27:35 -07:00
2018-12-07 21:30:43 -08: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 19:27:35 -07:00
}
2021-04-10 01:42:06 -07:00
} // namespace metaforce