From d97f66ef26c89c8bd805cdeafffa959c91ec278b Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Tue, 21 May 2013 17:50:37 -0400 Subject: Add (stationary and invisible) balls to the board. --- (limited to 'src/game.h') diff --git a/src/game.h b/src/game.h index 9a0f096..25d509b 100644 --- a/src/game.h +++ b/src/game.h @@ -2,13 +2,17 @@ #define GAME_H #include "player.h" +#include "ball.h" struct game { struct player *players[2]; char running; + char min_balls; + char cur_balls; + struct ball *balls_head; }; -struct game *new_game(void); +struct game *new_game(char balls); void free_game(struct game *g); void run_game(struct game *g); -- cgit v0.9.1