mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
9e686e2a87
* cmake+ci: run clang-tidy
* Remove DESCRIPTION from LEGO1/LegoOmni.mingw.def
* Add initial .clang-tidy and fixes
* fix file perms
* Comment out DESCRIPTION
* Remove LegoEntity::~LegoEntity and MxPresenter::~MxPresenter from mingw's LEGO1.def
* Looks like clang is allergic to the libs in the directx5 SDK
* Update .clang-tidy
* Fix typo in .clang-tidy
* Attempt to generate an action error
* Revert "Attempt to generate an action error"
This reverts commit 96c4c65fed
.
* cmake: test with -Wparentheses + optionally with -Werror
* ci: -k0 is a Ninja argument
* Use -Werror only for msys2 builds
* cmake: only emit warnings for specific warnings
* cmake: and don't do -Werror/-WX anymore
* Fix warnings
* Fix mingw warnings
---------
Co-authored-by: Christian Semmler <mail@csemmler.com>
36 lines
896 B
C++
36 lines
896 B
C++
#ifndef LEGOMETERPRESENTER_H
|
|
#define LEGOMETERPRESENTER_H
|
|
|
|
#include "mxstillpresenter.h"
|
|
|
|
// VTABLE: LEGO1 0x100d7ac8
|
|
// SIZE 0x94 (from 0x1000a163)
|
|
class LegoMeterPresenter : public MxStillPresenter {
|
|
public:
|
|
LegoMeterPresenter();
|
|
~LegoMeterPresenter() override;
|
|
|
|
// MxStillPresenter's `::ClassName` and `::IsA` are used.
|
|
|
|
void StreamingTickle() override; // vtable+0x20
|
|
void RepeatingTickle() override; // vtable+0x24
|
|
void ParseExtra() override; // vtable+0x30
|
|
|
|
private:
|
|
void FUN_10043a50();
|
|
|
|
MxU8* m_unk0x6c; // 0x6c
|
|
MxU16 m_type; // 0x70
|
|
MxString m_variable; // 0x74
|
|
MxFloat m_unk0x84; // 0x84
|
|
MxU16 m_unk0x88; // 0x88
|
|
MxU16 m_unk0x8a; // 0x8a
|
|
MxU16 m_unk0x8c; // 0x8c
|
|
MxU16 m_unk0x8e; // 0x8e
|
|
MxU16 m_layout; // 0x90
|
|
};
|
|
|
|
// SYNTHETIC: LEGO1 0x10043760
|
|
// LegoMeterPresenter::`scalar deleting destructor'
|
|
|
|
#endif // LEGOMETERPRESENTER_H
|