mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
b743f99d20
* LegoOmni::CreateStreamObject and related * Revert change to MxDSSource/MxDSFile Read export
33 lines
726 B
C++
33 lines
726 B
C++
#ifndef MXDSSERIALACTION_H
|
|
#define MXDSSERIALACTION_H
|
|
|
|
#include "mxdsmultiaction.h"
|
|
#include "decomp.h"
|
|
|
|
// VTABLE 0x100dcf38
|
|
// SIZE 0xa8
|
|
class MxDSSerialAction : public MxDSMultiAction
|
|
{
|
|
public:
|
|
MxDSSerialAction();
|
|
virtual ~MxDSSerialAction() override;
|
|
|
|
// OFFSET: LEGO1 0x100caad0
|
|
inline virtual const char *ClassName() const override // vtable+0x0c
|
|
{
|
|
// 0x100f75dc
|
|
return "MxDSSerialAction";
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100caae0
|
|
inline virtual MxBool IsA(const char *name) const override // vtable+0x10
|
|
{
|
|
return !strcmp(name, MxDSSerialAction::ClassName()) || MxDSMultiAction::IsA(name);
|
|
}
|
|
|
|
undefined4 m_unk0x9c;
|
|
undefined4 m_unk0xa0;
|
|
undefined4 m_unk0xa4;
|
|
};
|
|
|
|
#endif // MXDSSERIALACTION_H
|