mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-12-02 12:17:16 -05:00
f50b771fff
* Push changes * fixes * Implement Infocenter::HandleEndAction * match Infocenter::StopCutScene * implement Infocenter::HandleKeyPress * fixes * Update infocenter.cpp * Update legoworld.cpp * use enums * WIP Fixes * Fix * Fix * Fix * Rename function * Change enum * Update enums * Refactor another enum * Refactor MxDSType * Refactor HashTableOpt * Fixes * Refactor tickle enum * Update other enums * Add EnumConstantName to ncc * Move enum to global namespace * Rename enum --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
16 lines
264 B
C++
16 lines
264 B
C++
#include "infocenterstate.h"
|
|
|
|
DECOMP_SIZE_ASSERT(InfocenterState, 0x94);
|
|
|
|
// STUB: LEGO1 0x10071600
|
|
InfocenterState::InfocenterState()
|
|
{
|
|
// TODO
|
|
memset(m_buffer, 0, sizeof(m_buffer));
|
|
}
|
|
|
|
// STUB: LEGO1 0x10071920
|
|
InfocenterState::~InfocenterState()
|
|
{
|
|
// TODO
|
|
}
|