summaryrefslogtreecommitdiff
path: root/src/main/game/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/game/game.h')
-rw-r--r--src/main/game/game.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/game/game.h b/src/main/game/game.h
index 3d10bea..d119f67 100644
--- a/src/main/game/game.h
+++ b/src/main/game/game.h
@@ -23,12 +23,14 @@
#define BOARD_SIZE 9
#include "cell.h"
+#include "../engine/engine.h"
typedef struct TrisGame {
int width, height;
Cell *cells[BOARD_SIZE];
char sign; /* x = cross and o = circle */
int moves;
+ Engine *engine;
} TrisGame;
TrisGame *game_init(int width, int height);