mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 02:27:43 +00:00
Various character imps
This commit is contained in:
@@ -0,0 +1,97 @@
|
||||
#include "CAnimTreeSingleChild.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
CAnimTreeSingleChild::CAnimTreeSingleChild(const std::weak_ptr<CAnimTreeNode>& node, const std::string& name)
|
||||
: CAnimTreeNode(name)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void CAnimTreeSingleChild::VAdvanceView(const CCharAnimTime& a)
|
||||
{
|
||||
}
|
||||
|
||||
void CAnimTreeSingleChild::VGetTimeRemaining() const
|
||||
{
|
||||
}
|
||||
|
||||
bool CAnimTreeSingleChild::VHasOffset(const CSegId& seg) const
|
||||
{
|
||||
}
|
||||
|
||||
void CAnimTreeSingleChild::VGetOffset(const CSegId& seg) const
|
||||
{
|
||||
}
|
||||
|
||||
void CAnimTreeSingleChild::VGetRotation(const CSegId& seg) const
|
||||
{
|
||||
}
|
||||
|
||||
void CAnimTreeSingleChild::VGetBoolPOIList(const CCharAnimTime& time,
|
||||
CBoolPOINode* listOut,
|
||||
u32, u32, u32) const
|
||||
{
|
||||
}
|
||||
|
||||
void CAnimTreeSingleChild::VGetInt32POIList(const CCharAnimTime& time,
|
||||
CInt32POINode* listOut,
|
||||
u32, u32, u32) const
|
||||
{
|
||||
}
|
||||
|
||||
void CAnimTreeSingleChild::VGetParticlePOIList(const CCharAnimTime& time,
|
||||
CParticlePOINode* listOut,
|
||||
u32, u32, u32) const
|
||||
{
|
||||
}
|
||||
|
||||
void CAnimTreeSingleChild::VGetSoundPOIList(const CCharAnimTime& time,
|
||||
CSoundPOINode* listOut,
|
||||
u32, u32, u32) const
|
||||
{
|
||||
}
|
||||
|
||||
void CAnimTreeSingleChild::VGetBoolPOIState(const char*) const
|
||||
{
|
||||
}
|
||||
|
||||
void CAnimTreeSingleChild::VGetInt32POIState(const char*) const
|
||||
{
|
||||
}
|
||||
|
||||
void CAnimTreeSingleChild::VGetParticlePOIState(const char*) const
|
||||
{
|
||||
}
|
||||
|
||||
void CAnimTreeSingleChild::VGetSegStatementSet(const CSegIdList& list,
|
||||
CSegStatementSet& setOut) const
|
||||
{
|
||||
}
|
||||
|
||||
void CAnimTreeSingleChild::VGetSegStatementSet(const CSegIdList& list,
|
||||
CSegStatementSet& setOut,
|
||||
const CCharAnimTime& time) const
|
||||
{
|
||||
}
|
||||
|
||||
void CAnimTreeSingleChild::VSetPhase(float)
|
||||
{
|
||||
}
|
||||
|
||||
SAdvancementResults
|
||||
CAnimTreeSingleChild::VGetAdvancementResults(const CCharAnimTime& a,
|
||||
const CCharAnimTime& b) const
|
||||
{
|
||||
}
|
||||
|
||||
void CAnimTreeSingleChild::Depth() const
|
||||
{
|
||||
}
|
||||
|
||||
void CAnimTreeSingleChild::VGetNumChildren() const
|
||||
{
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user