mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-12 11:11:16 +00:00
31 lines
535 B
C++
31 lines
535 B
C++
#include "elevatorbottom.h"
|
|
|
|
// OFFSET: LEGO1 0x100f04ac
|
|
static char* g_elevatorBottomClassName = "ElevatorBottom";
|
|
|
|
// OFFSET: LEGO1 0x10017e90
|
|
ElevatorBottom::ElevatorBottom()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x10018060
|
|
ElevatorBottom::~ElevatorBottom()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x10017f20
|
|
const char *ElevatorBottom::GetClassName() const
|
|
{
|
|
return g_elevatorBottomClassName;
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x10017f30
|
|
MxBool ElevatorBottom::IsClass(const char *name) const
|
|
{
|
|
// TODO
|
|
|
|
return MxBool();
|
|
}
|