mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 01:51:22 +00:00
17 lines
243 B
C++
17 lines
243 B
C++
#include "CAnimTreeNode.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
u32 CAnimTreeNode::GetNumChildren() const
|
|
{
|
|
return VGetNumChildren();
|
|
}
|
|
|
|
std::shared_ptr<IAnimReader> CAnimTreeNode::GetBestUnblendedChild() const
|
|
{
|
|
return VGetBestUnblendedChild();
|
|
}
|
|
|
|
}
|