mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
27 lines
574 B
C++
27 lines
574 B
C++
#ifndef MXDSSUBSCRIBER_H
|
|
#define MXDSSUBSCRIBER_H
|
|
|
|
#include "mxcore.h"
|
|
|
|
// VTABLE 0x100dc698
|
|
// SIZE 0x4c
|
|
class MxDSSubscriber : public MxCore {
|
|
public:
|
|
MxDSSubscriber();
|
|
virtual ~MxDSSubscriber() override;
|
|
|
|
// OFFSET: LEGO1 0x100b7d50
|
|
inline virtual const char* ClassName() const override // vtable+0x0c
|
|
{
|
|
// 0x101020f8
|
|
return "MxDSSubscriber";
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100b7d60
|
|
inline virtual MxBool IsA(const char* name) const override // vtable+0x10
|
|
{
|
|
return !strcmp(name, MxDSSubscriber::ClassName()) || MxCore::IsA(name);
|
|
}
|
|
};
|
|
|
|
#endif // MXDSSUBSCRIBER_H
|