aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie/cell.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/groovie/cell.h')
-rw-r--r--engines/groovie/cell.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/groovie/cell.h b/engines/groovie/cell.h
index 14e44511e3..6e90b1dd53 100644
--- a/engines/groovie/cell.h
+++ b/engines/groovie/cell.h
@@ -29,6 +29,8 @@
#include "common/file.h"
#include "common/util.h"
+#include "groovie/groovie.h"
+
#define BOARDSIZE 7
#define CELL_CLEAR 0
#define CELL_BLUE 1
@@ -51,6 +53,7 @@ public:
private:
bool validMove(byte *board, uint8 color, int8 endX, int8 endY);
+ void execMove(byte *board, uint8 color, int8 startX, int8 startY, int8 endX, int8 endY);
uint8 countBoard(byte* board, uint8 color);
byte *_board;