LegoPalettePresenter::Init()

This commit is contained in:
Joshua Peisach 2023-09-10 21:09:22 -04:00
parent f49e97ea2f
commit b47ce3fa5b
No known key found for this signature in database
GPG Key ID: 41C3D4189AFEDB5A
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,7 @@
#include "legopalettepresenter.h"
DECOMP_SIZE_ASSERT(LegoPalettePresenter, 0x68)
// OFFSET: LEGO1 0x10079e50
LegoPalettePresenter::LegoPalettePresenter()
{
@ -12,8 +14,8 @@ LegoPalettePresenter::~LegoPalettePresenter()
// TODO
}
// OFFSET: LEGO1 0x1007a0d0 STUB
// OFFSET: LEGO1 0x1007a0d0
void LegoPalettePresenter::Init()
{
// TODO
this->m_unk64 = 0;
}

View File

@ -27,6 +27,7 @@ class LegoPalettePresenter : public MxVideoPresenter
private:
void Init();
MxS32 m_unk64;
};