summaryrefslogtreecommitdiffstats
path: root/src/ball.h
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-05-21 18:22:53 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-05-21 18:23:27 (EDT)
commit4e6e4ab53d3d43725f117c0dbf613b2bd9c7794c (patch)
treeea6cbf42c49cddfae32841d0108c1fc357aace47 /src/ball.h
parent456372dc946a7562126047b5e179da32a6cee4be (diff)
downloadcursespong-4e6e4ab53d3d43725f117c0dbf613b2bd9c7794c.zip
cursespong-4e6e4ab53d3d43725f117c0dbf613b2bd9c7794c.tar.gz
cursespong-4e6e4ab53d3d43725f117c0dbf613b2bd9c7794c.tar.bz2
Write a stub update_ball().
Diffstat (limited to 'src/ball.h')
-rw-r--r--src/ball.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ball.h b/src/ball.h
index 9f30a83..6090c8e 100644
--- a/src/ball.h
+++ b/src/ball.h
@@ -14,6 +14,7 @@ struct ball {
struct ball *new_ball(int x, int y);
void free_ball(struct ball *b);
+void update_ball(struct ball *b);
void draw_ball(struct ball *b);
#endif