2022-10-09 05:13:17 +00:00
|
|
|
#ifndef _CARCHMSGPARMUSERINPUT
|
|
|
|
#define _CARCHMSGPARMUSERINPUT
|
2022-10-08 19:38:29 +00:00
|
|
|
|
|
|
|
#include "MetroidPrime/CArchitectureMessage.hpp"
|
|
|
|
|
|
|
|
#include "Kyoto/Input/CFinalInput.hpp"
|
|
|
|
|
|
|
|
class CArchMsgParmUserInput : public IArchitectureMessageParm {
|
|
|
|
public:
|
|
|
|
CArchMsgParmUserInput(const CFinalInput& in);
|
|
|
|
~CArchMsgParmUserInput();
|
|
|
|
|
|
|
|
const CFinalInput& GetUserInput() const;
|
2022-10-09 05:13:17 +00:00
|
|
|
|
2022-10-08 19:38:29 +00:00
|
|
|
private:
|
|
|
|
CFinalInput mInput;
|
|
|
|
};
|
|
|
|
|
2022-10-09 05:13:17 +00:00
|
|
|
#endif // _CARCHMSGPARMUSERINPUT
|