summaryrefslogtreecommitdiffstats
path: root/src/game.h
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-05-20 15:20:37 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-05-20 15:20:37 (EDT)
commit17b37f5bb462c29e2b8c94068c4b54e1af39b2b7 (patch)
treeb5e3669410e4c3cc16c6f8accb4f146f0422fe37 /src/game.h
parent6c69108044469c2ec69ad27eb768ca4680e131e1 (diff)
downloadcursespong-17b37f5bb462c29e2b8c94068c4b54e1af39b2b7.zip
cursespong-17b37f5bb462c29e2b8c94068c4b54e1af39b2b7.tar.gz
cursespong-17b37f5bb462c29e2b8c94068c4b54e1af39b2b7.tar.bz2
Draw the paddles on the screen.
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game.h b/src/game.h
index abd5638..f404ff0 100644
--- a/src/game.h
+++ b/src/game.h
@@ -9,5 +9,6 @@ struct game {
struct game *new_game(void);
void free_game(struct game *g);
+void draw_game(struct game *g);
#endif