mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 16:18:31 -05:00
3c0bf7191c
* Implement LegoWorldPresenter::~LegoWorldPresenter * Rename incorrect function name * fixes * Rename functions * fix format
33 lines
443 B
C++
33 lines
443 B
C++
#include "legoplantmanager.h"
|
|
|
|
// FUNCTION: LEGO1 0x10026220
|
|
LegoPlantManager::LegoPlantManager()
|
|
{
|
|
Init();
|
|
}
|
|
|
|
// STUB: LEGO1 0x100262c0
|
|
LegoPlantManager::~LegoPlantManager()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x10026330
|
|
void LegoPlantManager::Init()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x10026360
|
|
void LegoPlantManager::FUN_10026360(undefined4 p_world)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// STUB: LEGO1 0x10026e00
|
|
MxResult LegoPlantManager::Tickle()
|
|
{
|
|
// TODO
|
|
|
|
return 0;
|
|
}
|