isle/LEGO1/mxdsserialaction.h
MS b743f99d20
LegoOmni::CreateStreamObject and related (#129)
* LegoOmni::CreateStreamObject and related

* Revert change to MxDSSource/MxDSFile Read export
2023-09-20 16:22:57 -04:00

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