begin work on subclass

This commit is contained in:
Misha 2023-12-24 16:43:16 -05:00
parent c832d1640f
commit c5affa27f5
No known key found for this signature in database
GPG Key ID: 8441D12AEF33FED8
2 changed files with 9 additions and 2 deletions

View File

@ -51,7 +51,7 @@ MxResult LegoSoundManager::Create(MxU32 p_frequencyMS, MxBool p_createThread)
} }
} }
// todo m_unk0x40 = new LegoSoundManagerSubclass();
result = SUCCESS; result = SUCCESS;
} }

View File

@ -19,7 +19,14 @@ class LegoSoundManager : public MxSoundManager {
void Destroy(MxBool p_fromDestructor); void Destroy(MxBool p_fromDestructor);
IDirectSound3DListener* m_listener; IDirectSound3DListener* m_listener;
undefined4 m_unk0x40; LegoSoundManagerSubclass* m_unk0x40;
};
// VTABLE: LEGO1 0x100d6b4c
// SIZE 0x20
class LegoSoundManagerSubclass
{
}; };
#endif // LEGOSOUNDMANAGER_H #endif // LEGOSOUNDMANAGER_H