mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-26 17:36:12 -05:00
implement/match JukeBoxState (#233)
This commit is contained in:
parent
681ab9c026
commit
7e907cfe3f
2 changed files with 7 additions and 0 deletions
|
@ -1 +1,6 @@
|
|||
#include "jukeboxstate.h"
|
||||
|
||||
// OFFSET: LEGO1 0x1000f300
|
||||
MxBool JukeBoxState::VTable0x14() {
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -21,6 +21,8 @@ class JukeBoxState : public LegoState
|
|||
return !strcmp(name, JukeBoxState::ClassName()) || LegoState::IsA(name);
|
||||
}
|
||||
|
||||
virtual MxBool VTable0x14() override; // vtable+0x14
|
||||
|
||||
};
|
||||
|
||||
#endif // JUKEBOXSTATE_H
|
||||
|
|
Loading…
Reference in a new issue