isle/LEGO1/legoplantmanager.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

29 lines
496 B
C++

#include "legoplantmanager.h"
// OFFSET: LEGO1 0x100f318c
static char* g_LegoPlantManagerName = "LegoPlantManager";
// OFFSET: LEGO1 0x10026220
LegoPlantManager::LegoPlantManager()
{
// TODO
}
// OFFSET: LEGO1 0x100262c0
LegoPlantManager::~LegoPlantManager()
{
// TODO
}
// OFFSET: LEGO1 0x10026290
const char *LegoPlantManager::GetClassName() const
{
return g_LegoPlantManagerName;
}
// OFFSET: LEGO1 0x10026330
void LegoPlantManager::Init()
{
// TODO
}