summaryrefslogtreecommitdiff
path: root/ball.h
diff options
context:
space:
mode:
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