diff --git a/src/model/CM2Model.cpp b/src/model/CM2Model.cpp index df5ef9d..69cc90a 100644 --- a/src/model/CM2Model.cpp +++ b/src/model/CM2Model.cpp @@ -599,6 +599,10 @@ void CM2Model::CancelDeferredSequences(uint32_t boneIndex, bool a3) { // TODO } +void CM2Model::DetachFromParent() { + // TODO +} + void CM2Model::DetachFromScene() { // TODO } diff --git a/src/model/CM2Model.hpp b/src/model/CM2Model.hpp index 1829702..fc5a6d0 100644 --- a/src/model/CM2Model.hpp +++ b/src/model/CM2Model.hpp @@ -144,6 +144,7 @@ class CM2Model { void AttachToParent(CM2Model* parent, uint32_t id, const C3Vector* position, int32_t a5); void AttachToScene(CM2Scene* scene); void CancelDeferredSequences(uint32_t boneIndex, bool a3); + void DetachFromParent(); void DetachFromScene(); void FindKey(M2ModelBoneSeq* sequence, const M2TrackBase& track, uint32_t& currentKey, uint32_t& nextKey, float& ratio); CAaBox& GetBoundingBox(CAaBox& bounds);