mirror of
https://github.com/isledecomp/isle-portable.git
synced 2025-02-17 04:01:06 -05:00
36 lines
744 B
C++
36 lines
744 B
C++
#include "legopartpresenter.h"
|
|
|
|
#include "legoomni.h"
|
|
#include "legovideomanager.h"
|
|
|
|
// GLOBAL: LEGO1 0x100f7aa0
|
|
int g_partPresenterConfig1 = 1;
|
|
|
|
// GLOBAL: LEGO1 0x100f7aa4
|
|
int g_partPresenterConfig2 = 100;
|
|
|
|
// STUB: LEGO1 0x1000cf60
|
|
void LegoPartPresenter::Destroy()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x1007c990
|
|
void LegoPartPresenter::configureLegoPartPresenter(MxS32 p_partPresenterConfig1, MxS32 p_partPresenterConfig2)
|
|
{
|
|
g_partPresenterConfig1 = p_partPresenterConfig1;
|
|
g_partPresenterConfig2 = p_partPresenterConfig2;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x1007c9b0
|
|
MxResult LegoPartPresenter::AddToManager()
|
|
{
|
|
VideoManager()->RegisterPresenter(*this);
|
|
return SUCCESS;
|
|
}
|
|
|
|
// STUB: LEGO1 0x1007deb0
|
|
void LegoPartPresenter::ReadyTickle()
|
|
{
|
|
// TODO
|
|
}
|