mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
17 lines
305 B
C++
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
|