2025-12-04 21:21:39 -08:00

35 lines
344 B
C++

#ifndef M_C_HPP
#define M_C_HPP
#include "CComponentAc.hpp"
namespace M {
class C :
public CComponentBase
{
public:
C(const char* name) {
}
void init(U32 instanceId) {
}
void regCommandsSpecial() {
}
void C_cmdHandler(FwOpcodeType opCode, U32 cmdSeq) {
}
};
}
#endif