mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-15 03:24:59 -05:00
Add LegoMeterPresenter stub class (#206)
This commit is contained in:
parent
b92b2604d5
commit
7cf85e6f06
3 changed files with 21 additions and 0 deletions
|
@ -72,6 +72,7 @@ add_library(lego1 SHARED
|
|||
LEGO1/legojetski.cpp
|
||||
LEGO1/legoloadcachesoundpresenter.cpp
|
||||
LEGO1/legolocomotionanimpresenter.cpp
|
||||
LEGO1/legometerpresenter.cpp
|
||||
LEGO1/legomodelpresenter.cpp
|
||||
LEGO1/legonavcontroller.cpp
|
||||
LEGO1/legoobjectfactory.cpp
|
||||
|
|
6
LEGO1/legometerpresenter.cpp
Normal file
6
LEGO1/legometerpresenter.cpp
Normal file
|
@ -0,0 +1,6 @@
|
|||
#include "legometerpresenter.h"
|
||||
|
||||
#include "decomp.h"
|
||||
|
||||
// Uncomment when member class variables are fleshed out.
|
||||
// DECOMP_SIZE_ASSERT(LegoMeterPresenter, 0x94); // 0x1000a163
|
14
LEGO1/legometerpresenter.h
Normal file
14
LEGO1/legometerpresenter.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
#ifndef LEGOMETERPRESENTER_H
|
||||
#define LEGOMETERPRESENTER_H
|
||||
|
||||
#include "mxstillpresenter.h"
|
||||
|
||||
// VTABLE 0x100d7ac8
|
||||
// SIZE 0x94 (from 0x1000a163)
|
||||
class LegoMeterPresenter : public MxStillPresenter
|
||||
{
|
||||
public:
|
||||
// MxStillPresenter's `::ClassName` and `::IsA` are used.
|
||||
};
|
||||
|
||||
#endif // LEGOMETERPRESENTER_H
|
Loading…
Reference in a new issue