mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -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>
34 lines
909 B
C++
34 lines
909 B
C++
#ifndef LEGOCONTROLMANAGER_H
|
|
#define LEGOCONTROLMANAGER_H
|
|
|
|
#include "mxcore.h"
|
|
#include "mxpresenterlist.h"
|
|
|
|
// VTABLE: LEGO1 0x100d6a80
|
|
class LegoControlManager : public MxCore {
|
|
public:
|
|
LegoControlManager();
|
|
virtual ~LegoControlManager() override; // vtable+0x0
|
|
|
|
virtual MxResult Tickle() override; // vtable+0x8
|
|
|
|
// FUNCTION: LEGO1 0x10028cb0
|
|
inline virtual const char* ClassName() const override // vtable+0x0c
|
|
{
|
|
// STRING: LEGO1 0x100f31b8
|
|
return "LegoControlManager";
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x10028cc0
|
|
inline virtual MxBool IsA(const char* p_name) const override // vtable+0x10
|
|
{
|
|
return !strcmp(p_name, LegoControlManager::ClassName()) || MxCore::IsA(p_name);
|
|
}
|
|
|
|
void FUN_10028df0(MxPresenterList* p_presenterList);
|
|
void Register(MxCore* p_listener);
|
|
void Unregister(MxCore* p_listener);
|
|
void FUN_100293c0(undefined4, const MxAtomId&, undefined2);
|
|
};
|
|
|
|
#endif // LEGOCONTROLMANAGER_H
|