2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 14:31:20 +00:00
metaforce/Runtime/Character/CAnimTreeNode.cpp

14 lines
421 B
C++

#include "Runtime/Character/CAnimTreeNode.hpp"
namespace metaforce {
CAnimTreeEffectiveContribution CAnimTreeNode::GetContributionOfHighestInfluence() const {
return VGetContributionOfHighestInfluence();
}
u32 CAnimTreeNode::GetNumChildren() const { return VGetNumChildren(); }
std::shared_ptr<IAnimReader> CAnimTreeNode::GetBestUnblendedChild() const { return VGetBestUnblendedChild(); }
} // namespace metaforce