Files

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

2020-01-15 07:07:48 -05:00
#include "Runtime/Character/CMetaTransSnap.hpp"
2016-04-10 11:22:59 -10:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2016-04-10 11:22:59 -10:00
2018-12-07 19:30:43 -10:00
std::shared_ptr<CAnimTreeNode> CMetaTransSnap::VGetTransitionTree(const std::weak_ptr<CAnimTreeNode>& a,
const std::weak_ptr<CAnimTreeNode>& b,
const CAnimSysContext& animSys) const {
return b.lock();
2016-04-10 11:22:59 -10:00
}
2021-04-10 01:42:06 -07:00
} // namespace metaforce