summaryrefslogtreecommitdiff
path: root/paddle.h
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2010-01-22 22:59:35 -0500
committerMatt Turner <mattst88@gmail.com>2011-04-04 17:14:36 -0400
commitc265e527e34736c49c2c6f017d84aa0723fb2fc9 (patch)
tree670ffd27f66a2a37bbf636cd3b20efe22e60fdf9 /paddle.h
parent54124c855dd096825b4487417ce1e085228dde9e (diff)
Move paddle code into paddle.c.
Signed-off-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'paddle.h')
-rw-r--r--paddle.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/paddle.h b/paddle.h
index 5dc4f12..14b7ed8 100644
--- a/paddle.h
+++ b/paddle.h
@@ -6,7 +6,8 @@
#include "glpong3d.h"
-void GLPong_PaddleDrawBack(const Paddle_t * paddle);
-void GLPong_PaddleDrawFront(const Paddle_t * paddle);
+void GLPong_PaddleDraw(const Paddle_t * paddle);
+void GLPong_PaddleInit(Paddle_t * paddle, GLfloat z, GLuint texture);
+void GLPong_PaddleMove(Paddle_t * paddle, GLfloat x, GLfloat y);
#endif /* PADDLE_H */