mirror of https://github.com/PrimeDecomp/prime.git
20 lines
428 B
C++
20 lines
428 B
C++
|
|
#ifndef _CARCHMSGPARMINT32INT32VOIDPTR
|
|
#define _CARCHMSGPARMINT32INT32VOIDPTR
|
|
|
|
#include "types.h"
|
|
|
|
#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();
|
|
};
|
|
|
|
#endif // _CARCHMSGPARMINT32INT32VOIDPTR
|