Match and link all CArchMsgParm*

Former-commit-id: 954e820f65
This commit is contained in:
2022-10-08 12:38:29 -07:00
parent 7ccf78c0a2
commit b486f6a890
28 changed files with 414 additions and 162 deletions

View File

@@ -0,0 +1,16 @@
#ifndef __CARCMSGPARMCONTROLLERSTATUS_HPP__
#define __CARCMSGPARMCONTROLLERSTATUS_HPP__
#include "MetroidPrime/CArchitectureMessage.hpp"
class CArchMsgParmControllerStatus : public IArchitectureMessageParm {
short mChannel;
bool mConnected;
public:
CArchMsgParmControllerStatus(short channel, bool connected);
~CArchMsgParmControllerStatus();
};
#endif // __CARCMSGPARMCONTROLLERSTATUS_HPP__