isle/LEGO1/bumpbouy.cpp
itsmattkc 73a9013a3b rename GetClassName/IsClass
Mirroring recent changes from master
2023-06-27 19:15:56 -07:00

19 lines
299 B
C++

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