metaforce/Runtime/Character/CTransitionManager.cpp

12 lines
388 B
C++
Raw Normal View History

2016-09-04 02:27:35 +00:00
#include "CTransitionManager.hpp"
#include "CTreeUtils.hpp"
2018-12-08 05:30:43 +00:00
namespace urde {
2016-09-04 02:27:35 +00:00
2018-12-08 05:30:43 +00: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-04 02:27:35 +00:00
}
2018-12-08 05:30:43 +00:00
} // namespace urde