summaryrefslogtreecommitdiff
path: root/src/Game.hpp
diff options
context:
space:
mode:
authordawidg81 <dawidgorski.m@gmail.com>2026-02-02 12:30:03 +0100
committerdawidg81 <dawidgorski.m@gmail.com>2026-02-02 12:30:03 +0100
commit90962f793887fd147dfc247e7f5b0d66ab9dac83 (patch)
tree48bf92d3e7a414c6bb7ae600cc6253c2ab7b19ee /src/Game.hpp
parent3d8c56520f177d7eeaaea4dc3082a79eda3f487c (diff)
Added game input and board clear
Diffstat (limited to 'src/Game.hpp')
-rw-r--r--src/Game.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Game.hpp b/src/Game.hpp
index 767ab94..882bb02 100644
--- a/src/Game.hpp
+++ b/src/Game.hpp
@@ -15,10 +15,13 @@ private:
int mines;
public:
+ bool inGame;
+
int editDiff();
void initDiff(int diff);
void initBoard();
void displayBoard();
+ void input();
};
#endif