Add LegoMeterPresenter stub class (#206)

This commit is contained in:
Andrew Gutekanst 2023-10-14 09:08:51 -04:00 committed by GitHub
parent b92b2604d5
commit 7cf85e6f06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 0 deletions

View file

@ -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

View 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

View 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