summaryrefslogtreecommitdiff
path: root/ball.h
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2010-01-22 20:52:51 -0500
committerMatt Turner <mattst88@gmail.com>2011-04-04 17:14:36 -0400
commit54124c855dd096825b4487417ce1e085228dde9e (patch)
treeabe88fa752a51908938596b8427f65bc677a90dd /ball.h
parentad0fe49b1a3f7c6b0d6d622811d82ca4d6cac47a (diff)
Move ball code into ball.c.
Signed-off-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'ball.h')
-rw-r--r--ball.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ball.h b/ball.h
index 6ce1deb..bf3e849 100644
--- a/ball.h
+++ b/ball.h
@@ -6,6 +6,8 @@
#include "glpong3d.h"
-void GLPong_BallDraw(const Ball_t * ball);
+void GLPong_BallDraw(void);
+void GLPong_BallInit(GLuint texture);
+void GLPong_BallMove(void);
#endif