summaryrefslogtreecommitdiffstats
path: root/src/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game.h b/src/game.h
index f404ff0..9a0f096 100644
--- a/src/game.h
+++ b/src/game.h
@@ -5,10 +5,11 @@
struct game {
struct player *players[2];
+ char running;
};
struct game *new_game(void);
void free_game(struct game *g);
-void draw_game(struct game *g);
+void run_game(struct game *g);
#endif