Files
PlanetFleet/source/core/console/toggleDebugCommand.h
T
2026-05-21 20:28:52 +03:00

17 lines
305 B
C++

#ifndef TOGGLE_DEBUG_COMMAND_H
#define TOGGLE_DEBUG_COMMAND_H
#include "abstractCommand.h"
namespace battleship{
class ToggleDebugCommand : public AbstractCommand{
public:
ToggleDebugCommand(std::string str) : AbstractCommand(str){}
void validate();
void execute();
private:
};
}
#endif