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
3 changed files with 21 additions and 0 deletions

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