summaryrefslogtreecommitdiffstats
path: root/src/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/game.h b/src/game.h
new file mode 100644
index 0000000..abd5638
--- /dev/null
+++ b/src/game.h
@@ -0,0 +1,13 @@
+#ifndef GAME_H
+#define GAME_H
+
+#include "player.h"
+
+struct game {
+ struct player *players[2];
+};
+
+struct game *new_game(void);
+void free_game(struct game *g);
+
+#endif