mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 16:34:06 +00:00

* define MxLong/MxULong The "long" type has different sizes on different platforms, and this may cause issues. * use DWORD to match RegQueryValueExA arg
28 lines
369 B
C++
28 lines
369 B
C++
#include "legoplantmanager.h"
|
|
|
|
// OFFSET: LEGO1 0x10026220
|
|
LegoPlantManager::LegoPlantManager()
|
|
{
|
|
Init();
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100262c0 STUB
|
|
LegoPlantManager::~LegoPlantManager()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x10026e00 STUB
|
|
MxLong LegoPlantManager::Tickle()
|
|
{
|
|
// TODO
|
|
|
|
return 0;
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x10026330 STUB
|
|
void LegoPlantManager::Init()
|
|
{
|
|
// TODO
|
|
}
|