mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-06 11:53:29 +00:00
14 lines
286 B
C++
14 lines
286 B
C++
#ifndef __CARCMSGPARMINT32_HPP__
|
|
#define __CARCMSGPARMINT32_HPP__
|
|
|
|
#include "MetroidPrime/CArchitectureMessage.hpp"
|
|
|
|
class CArchMsgParmInt32 : public IArchitectureMessageParm {
|
|
int mVal;
|
|
public:
|
|
CArchMsgParmInt32(int);
|
|
~CArchMsgParmInt32();
|
|
};
|
|
|
|
#endif // __CARCMSGPARMINT32_HPP__
|