diff options
Diffstat (limited to 'paddle.h')
-rw-r--r-- | paddle.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,4 +1,11 @@ #ifndef PADDLE_H
#define PADDLE_H
+GLuint paddle_texture;
+
+typedef struct {
+ GLfloat w, h, x, y, z;
+ GLfloat r, g, b, a;
+} Paddle_t;
+
#endif
|