summaryrefslogtreecommitdiff
path: root/Board.h
diff options
context:
space:
mode:
Diffstat (limited to 'Board.h')
-rw-r--r--Board.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Board.h b/Board.h
index 50e9fa4..e2a9da0 100644
--- a/Board.h
+++ b/Board.h
@@ -25,12 +25,13 @@
class Board
{
public:
- Board(int width, int height, int minecount);
+ //Board(int width, int height, int minecount);
+ Board();
~Board();
int get_tile_count(){ return tilecount; };
Tile *get_tile_at(int x, int y);
bool reveal_tile_at(int x, int y);
- void new_game(int x, int y);
+ void new_game(int width, int height, int minecount);
bool is_game_running() { return this->game_running; };
bool is_game_won() { return this->game_won; };
bool check_win();