2023-10-23 07:16:21 -04:00
|
|
|
#ifndef MXTYPE17NOTIFICATIONPARAM_H
|
|
|
|
#define MXTYPE17NOTIFICATIONPARAM_H
|
|
|
|
|
|
|
|
#include "decomp.h"
|
2023-10-24 19:38:27 -04:00
|
|
|
#include "mxnotificationparam.h"
|
2023-10-23 07:16:21 -04:00
|
|
|
|
|
|
|
// ??? This type is handled, but seemingly never created and no VTABLE fits
|
2023-10-24 19:38:27 -04:00
|
|
|
class MxType17NotificationParam : public MxNotificationParam {
|
2023-10-23 07:16:21 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
inline MxU32 GetUnknown20() { return m_unk20; }
|
|
|
|
inline MxU16 GetUnknown28() { return m_unk28; }
|
2023-10-23 07:16:21 -04:00
|
|
|
|
|
|
|
protected:
|
2023-10-24 19:38:27 -04:00
|
|
|
undefined m_unkc[0x14];
|
|
|
|
MxU32 m_unk20;
|
|
|
|
undefined4 m_unk24;
|
|
|
|
MxU16 m_unk28;
|
2023-10-23 07:16:21 -04:00
|
|
|
};
|
|
|
|
|
2023-10-25 14:51:59 -04:00
|
|
|
#endif // MXTYPE17NOTIFICATIONPARAM_H
|