summaryrefslogtreecommitdiff
path: root/ball.h
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2006-08-04 04:23:58 +0000
committerMatt Turner <mattst88@gmail.com>2006-08-04 04:23:58 +0000
commit2702663dd712037f01d9dd97663d8f63603ea930 (patch)
tree243fec3b1a5d17d1e3e633972d056203354f8c68 /ball.h
parent6a2ef03d88a1757ce778f6aa943bd928f4a7b27c (diff)
Bouncing ball fixes/improvements
git-svn-id: svn://mattst88.com/svn/glpong3d/trunk@5 4dd1920e-271a-0410-bca0-81b404a81564
Diffstat (limited to 'ball.h')
-rw-r--r--ball.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ball.h b/ball.h
index 3ee3e2e..48c8f14 100644
--- a/ball.h
+++ b/ball.h
@@ -7,6 +7,7 @@ typedef struct {
GLfloat w, h, x, y, z;
GLfloat r, g, b, a;
GLfloat xv, yv, zv;
+ GLfloat rotate;
} Ball_t;
#endif