mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
24c9f8b9ed
* MxStillPresenter::ParseExtra * resolve clang-format complaints
18 lines
364 B
C++
18 lines
364 B
C++
#ifndef MXSTILLPRESENTER_H
|
|
#define MXSTILLPRESENTER_H
|
|
|
|
#include "decomp.h"
|
|
#include "mxvideopresenter.h"
|
|
|
|
// VTABLE 0x100d7a38
|
|
// SIZE 0x6c
|
|
class MxStillPresenter : public MxVideoPresenter {
|
|
public:
|
|
virtual void ParseExtra() override; // vtable+0x30
|
|
|
|
MxStillPresenter() { m_unk68 = 0; }
|
|
undefined4 m_unk64;
|
|
undefined4 m_unk68;
|
|
};
|
|
|
|
#endif // MXSTILLPRESENTER_H
|