mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-12 11:11:16 +00:00
19 lines
306 B
C++
19 lines
306 B
C++
#include "bumpbouy.h"
|
|
|
|
// 0x100f0394
|
|
static char* g_bumpBouyString = "BumpBouy";
|
|
|
|
// OFFSET: LEGO1 0x100274e0 STUB
|
|
const char *BumpBouy::GetClassName() const
|
|
{
|
|
return g_bumpBouyString;
|
|
}
|
|
|
|
// OFFSET: LEG01 0x10027500 STUB
|
|
MxBool BumpBouy::IsClass(const char *name) const
|
|
{
|
|
// TODO
|
|
|
|
return MxBool();
|
|
}
|