diff options
Diffstat (limited to 'ball.h')
-rw-r--r-- | ball.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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
|