prime/include/MetroidPrime/CArchMsgParmReal32.hpp

17 lines
299 B
C++
Raw Normal View History

#ifndef _CARCHMSGPARMREAL32
#define _CARCHMSGPARMREAL32
#include "types.h"
2022-10-08 19:38:29 +00:00
#include "MetroidPrime/CArchitectureMessage.hpp"
class CArchMsgParmReal32 : public IArchitectureMessageParm {
float mVal;
2022-10-08 19:38:29 +00:00
public:
CArchMsgParmReal32(float);
~CArchMsgParmReal32();
};
#endif // _CARCHMSGPARMREAL32