mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 14:31:20 +00:00
Normalizes the headers for the cpp files in the RuntimeCommon target. Now all headers and source files within the RuntimeCommon/RuntimeCommonB targets are normalized and consistent with one another.
14 lines
411 B
C++
14 lines
411 B
C++
#include "Runtime/Character/CAnimTreeNode.hpp"
|
|
|
|
namespace urde {
|
|
|
|
CAnimTreeEffectiveContribution CAnimTreeNode::GetContributionOfHighestInfluence() const {
|
|
return VGetContributionOfHighestInfluence();
|
|
}
|
|
|
|
u32 CAnimTreeNode::GetNumChildren() const { return VGetNumChildren(); }
|
|
|
|
std::shared_ptr<IAnimReader> CAnimTreeNode::GetBestUnblendedChild() const { return VGetBestUnblendedChild(); }
|
|
|
|
} // namespace urde
|