isle/LEGO1/legoplantmanager.cpp
MattKC e16249b672
Define MxLong/MxULong (#71)
* define MxLong/MxULong

The "long" type has different sizes on different platforms, and this may cause issues.

* use DWORD to match RegQueryValueExA arg
2023-07-02 01:05:49 -07:00

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
}