reordered source files

This commit is contained in:
devZoGok
2026-05-21 20:28:52 +03:00
parent 4e36bfd311
commit ea9d49fe9d
182 changed files with 14678 additions and 0 deletions
@@ -0,0 +1,15 @@
#include "toggleDebugCommand.h"
#include "game.h"
namespace battleship{
void ToggleDebugCommand::validate(){
if(!arguments.empty()) return;
}
void ToggleDebugCommand::execute(){
AbstractCommand::execute();
Game *game = Game::getSingleton();
game->setDebug(!game->isDebug());
}
}