2022-10-08 19:38:29 +00:00
|
|
|
|
2022-10-09 05:13:17 +00:00
|
|
|
#ifndef _CARCHMSGPARMINT32INT32VOIDPTR
|
|
|
|
#define _CARCHMSGPARMINT32INT32VOIDPTR
|
|
|
|
|
|
|
|
#include "types.h"
|
2022-10-08 19:38:29 +00:00
|
|
|
|
|
|
|
#include "MetroidPrime/CArchitectureMessage.hpp"
|
|
|
|
|
|
|
|
class CArchMsgParmInt32Int32VoidPtr : public IArchitectureMessageParm {
|
|
|
|
int mInt1;
|
|
|
|
int mInt2;
|
|
|
|
const void* mPtr;
|
|
|
|
|
|
|
|
public:
|
|
|
|
CArchMsgParmInt32Int32VoidPtr(int val1, int val2, const void* ptr);
|
|
|
|
~CArchMsgParmInt32Int32VoidPtr();
|
|
|
|
};
|
|
|
|
|
2022-10-09 05:13:17 +00:00
|
|
|
#endif // _CARCHMSGPARMINT32INT32VOIDPTR
|