mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-12-22 05:42:29 -05:00
2bebc09da3
* Implement misc.lib * Lowercase files * Minor changes * Fix file cases * Fixes * Fix missing dtor * Add override * Match LegoImage::Read * Fix delete call --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
20 lines
440 B
C++
20 lines
440 B
C++
#include "pizzamissionstate.h"
|
|
|
|
DECOMP_SIZE_ASSERT(PizzaMissionStateEntry, 0x20)
|
|
DECOMP_SIZE_ASSERT(PizzaMissionState, 0xb0)
|
|
|
|
// STUB: LEGO1 0x100393c0
|
|
MxResult PizzaMissionState::VTable0x1c(LegoFile* p_legoFile)
|
|
{
|
|
// TODO
|
|
return SUCCESS;
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x10039510
|
|
PizzaMissionStateEntry* PizzaMissionState::GetState(MxU8 p_id)
|
|
{
|
|
for (MxS16 i = 0; i < 5; i++)
|
|
if (m_state[i].m_id == p_id)
|
|
return m_state + i;
|
|
return NULL;
|
|
}
|