mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
42a82794a8
* MxStreamController::vtable0x2c * Add size comment --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
37 lines
819 B
C++
37 lines
819 B
C++
#ifndef MXNEXTACTIONDATASTART_H
|
|
#define MXNEXTACTIONDATASTART_H
|
|
|
|
#include "mxcore.h"
|
|
|
|
// VTABLE 0x100dc9a0
|
|
// SIZE 0x14
|
|
class MxNextActionDataStart : public MxCore {
|
|
public:
|
|
// inlined constructor at 0x100c1847
|
|
inline MxNextActionDataStart(MxU32 p_objectId, MxS16 p_unk24val, MxU32 p_data)
|
|
{
|
|
m_objectId = p_objectId;
|
|
m_unk24val = p_unk24val;
|
|
m_data = p_data;
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100c1900
|
|
inline virtual const char* ClassName() const override // vtable+0xc
|
|
{
|
|
// 0x101025a0
|
|
return "MxNextActionDataStart";
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100c1910
|
|
inline virtual MxBool IsA(const char* name) const override // vtable+0x10
|
|
{
|
|
return !strcmp(name, MxNextActionDataStart::ClassName()) || MxCore::IsA(name);
|
|
}
|
|
|
|
private:
|
|
MxU32 m_objectId;
|
|
MxS16 m_unk24val;
|
|
MxU32 m_data;
|
|
};
|
|
|
|
#endif // MXNEXTACTIONDATASTART_H
|