feat(model): add attachment members to CM2Model

This commit is contained in:
fallenoak 2025-10-12 12:08:05 -05:00
parent f276902621
commit c71d701027
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -82,6 +82,12 @@ class CM2Model {
CM2Model** m_animatePrev = nullptr;
CM2Model* m_animateNext = nullptr;
CM2Model* m_attachParent = nullptr;
// TODO m_attachments; (presumably M2ModelAttachment)
uint32_t m_attachId = -1;
uint32_t m_attachIndex = 0xFFFF;
CM2Model* m_attachList = nullptr;
CM2Model** m_attachPrev = nullptr;
CM2Model* m_attachNext = nullptr;
uint32_t m_time = 0;
CM2Model** m_drawPrev = nullptr;
CM2Model* m_drawNext = nullptr;