isle/LEGO1/bumpbouy.cpp
Cydra 068e37040a Created a bunch more classes and added more information to exisiting ones
Did not error check, this was pushed just for reference
2023-06-21 14:24:59 +02:00

19 lines
328 B
C++

#include "bumpbouy.h"
// OFFSET: LEGO1 0x100f0394
static char* g_bumpBouyString = "BumpBouy";
// OFFSET: LEGO1 0x100274e0
const char *BumpBouy::GetClassName() const
{
return g_bumpBouyString;
}
// OFFSET: LEG01 0x10027500
MxBool BumpBouy::IsClass(const char *name) const
{
// TODO
return MxBool();
}