summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
authordawidg81 <dawidgorski.m@gmail.com>2026-01-24 17:38:57 +0100
committerdawidg81 <dawidgorski.m@gmail.com>2026-01-24 17:38:57 +0100
commit4b21ad49946bef562d388bd2d6185c3f98f9e87c (patch)
tree66e4353e8241fbc188a5ac99e70619ed08af549a /src/game.cpp
parent841a679e999bde905de5b7e994707d3c112f5375 (diff)
moved inGame declaration to header file
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/game.cpp b/src/game.cpp
index 0b15d96..3a7f7dc 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -2,8 +2,6 @@
#include "game.hpp"
using namespace std;
-bool inGame = false;
-
void game(int diff){
int boardWidth;
int boardHeight;
@@ -59,4 +57,4 @@ void game(int diff){
break;
}
-} \ No newline at end of file
+}