3
0
Fork 0
xnode/lib/xnode-shared/XnodeSystemModule.h
2022-11-13 01:46:38 +01:00

12 lines
210 B
C++

#ifndef XnodeSystemModule_h
#define XnodeSystemModule_h
class XnodeSystemModule {
public:
virtual bool systemModuleCommandExecute(char* cmd, char** args);
virtual void systemModuleCommandList();
};
#endif