summaryrefslogtreecommitdiff
path: root/ball.h
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2006-08-04 02:07:35 +0000
committerMatt Turner <mattst88@gmail.com>2006-08-04 02:07:35 +0000
commitaf5e07345548d223b50c3a297743fc55f02e60e3 (patch)
tree3b7a9231940c068215f8e206b0f14d668ce8516b /ball.h
parentc64c44b72db943b213d6dce03d4253528d13be92 (diff)
Code Import
git-svn-id: svn://mattst88.com/svn/glpong3d/trunk@3 4dd1920e-271a-0410-bca0-81b404a81564
Diffstat (limited to 'ball.h')
-rw-r--r--ball.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/ball.h b/ball.h
new file mode 100644
index 0000000..3ee3e2e
--- /dev/null
+++ b/ball.h
@@ -0,0 +1,12 @@
+#ifndef BALL_H
+#define BALL_H
+
+GLuint ball_texture;
+
+typedef struct {
+ GLfloat w, h, x, y, z;
+ GLfloat r, g, b, a;
+ GLfloat xv, yv, zv;
+} Ball_t;
+
+#endif