| 32 | uint8_t m_gmLevel; |
| 33 | |
| 34 | DebugCommand( const std::string& n, pFunc functionPtr, const std::string& hText, uint8_t uLevel ) |
| 35 | { |
| 36 | m_commandName = n; |
| 37 | m_pFunc = functionPtr; |
| 38 | m_helpText = hText; |
| 39 | m_gmLevel = uLevel; |
| 40 | } |
| 41 | |
| 42 | ~DebugCommand() |
| 43 | { |
nothing calls this directly
no outgoing calls
no test coverage detected