mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
27 lines
543 B
C
27 lines
543 B
C
|
#ifndef MXDSEVENT_H
|
||
|
#define MXDSEVENT_H
|
||
|
|
||
|
#include "mxdsmediaaction.h"
|
||
|
|
||
|
class MxDSEvent : public MxDSMediaAction
|
||
|
{
|
||
|
public:
|
||
|
MxDSEvent();
|
||
|
virtual ~MxDSEvent() override;
|
||
|
|
||
|
// OFFSET: LEGO1 0x100c9660
|
||
|
inline virtual const char *ClassName() const override // vtable+0x0c
|
||
|
{
|
||
|
// 0x101025f0
|
||
|
return "MxDSEvent";
|
||
|
}
|
||
|
|
||
|
// OFFSET: LEGO1 0x100c9670
|
||
|
inline virtual MxBool IsA(const char *name) const override // vtable+0x10
|
||
|
{
|
||
|
return !strcmp(name, MxDSEvent::ClassName()) || MxDSMediaAction::IsA(name);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
#endif // MXDSEVENT_H
|