prime/include/MetroidPrime/CArchMsgParmUserInput.hpp
Phillip Stephens b486f6a890 Match and link all CArchMsgParm*
Former-commit-id: 954e820f65024e15317da14a3c2e6e9d0aaeb8bc
2022-10-08 12:38:29 -07:00

19 lines
431 B
C++

#ifndef __CARCMSGPARMUSERINPUT_HPP__
#define __CARCMSGPARMUSERINPUT_HPP__
#include "MetroidPrime/CArchitectureMessage.hpp"
#include "Kyoto/Input/CFinalInput.hpp"
class CArchMsgParmUserInput : public IArchitectureMessageParm {
public:
CArchMsgParmUserInput(const CFinalInput& in);
~CArchMsgParmUserInput();
const CFinalInput& GetUserInput() const;
private:
CFinalInput mInput;
};
#endif // __CARCMSGPARMUSERINPUT_HPP__