implement/match JukeBoxState (#233)

This commit is contained in:
Ramen2X 2023-10-22 11:33:29 -04:00 committed by GitHub
parent 681ab9c026
commit 7e907cfe3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View file

@ -1 +1,6 @@
#include "jukeboxstate.h"
// OFFSET: LEGO1 0x1000f300
MxBool JukeBoxState::VTable0x14() {
return FALSE;
}

View file

@ -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