mirror of https://github.com/PrimeDecomp/prime.git
13 lines
265 B
C++
13 lines
265 B
C++
|
#ifndef __CARCMSGPARMNULL_HPP__
|
||
|
#define __CARCMSGPARMNULL_HPP__
|
||
|
|
||
|
#include "MetroidPrime/CArchitectureMessage.hpp"
|
||
|
|
||
|
class CArchMsgParmNull : public IArchitectureMessageParm {
|
||
|
public:
|
||
|
CArchMsgParmNull();
|
||
|
~CArchMsgParmNull();
|
||
|
};
|
||
|
|
||
|
#endif // __CARCMSGPARMNULL_HPP__
|