mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 08:24:16 +00:00
Further clean up Omni/LegoOmni separation (#423)
* Fix inline functions * Whitespace * Try this * Fix MxEntity * Further fixes * Move main out * Replace tickle code
This commit is contained in:

committed by
GitHub

parent
75f7791d6f
commit
516e16faf6
@@ -8,7 +8,8 @@
|
||||
// SIZE 0x54
|
||||
class MxSoundPresenter : public MxAudioPresenter {
|
||||
public:
|
||||
virtual ~MxSoundPresenter() override;
|
||||
// FUNCTION: LEGO1 0x1000d430
|
||||
virtual ~MxSoundPresenter() override { Destroy(TRUE); };
|
||||
|
||||
// FUNCTION: LEGO1 0x1000d4a0
|
||||
inline virtual const char* ClassName() const // vtable+0x0c
|
||||
@@ -24,7 +25,9 @@ public:
|
||||
};
|
||||
|
||||
virtual MxResult AddToManager() override; // vtable+0x34
|
||||
virtual void Destroy() override; // vtable+0x38
|
||||
|
||||
// FUNCTION: LEGO1 0x1000d490
|
||||
virtual void Destroy() override { Destroy(FALSE); }; // vtable+0x38
|
||||
|
||||
protected:
|
||||
void Destroy(MxBool p_fromDestructor);
|
||||
|
Reference in New Issue
Block a user