prime/include/MetroidPrime/CArchMsgParmReal32.hpp
Phillip Stephens ac0e3ef534 Match CConsoleOutputWindow, regswaps in constructor
Former-commit-id: 27bd20ff1daa1fdfd0557197aaeefbb1e9f8ca89
2022-10-08 23:55:36 -07:00

18 lines
348 B
C++

#ifndef _CARCHMSGPARMREAL32
#define _CARCHMSGPARMREAL32
#include "types.h"
#include "MetroidPrime/CArchitectureMessage.hpp"
class CArchMsgParmReal32 : public IArchitectureMessageParm {
public:
CArchMsgParmReal32(float);
~CArchMsgParmReal32();
float GetReal() const { return mVal; }
private:
float mVal;
};
#endif // _CARCHMSGPARMREAL32