mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
e16249b672
* define MxLong/MxULong The "long" type has different sizes on different platforms, and this may cause issues. * use DWORD to match RegQueryValueExA arg
27 lines
369 B
C++
27 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
|
|
}
|