summaryrefslogtreecommitdiff
path: root/paddle.h
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2006-08-04 17:01:27 +0000
committerMatt Turner <mattst88@gmail.com>2006-08-04 17:01:27 +0000
commit30783e44cac2b4a32eedff9ee5052ba61dde0a6c (patch)
treef7fa76a061b9d86bda7e155d9b8149c498e620b5 /paddle.h
parent2702663dd712037f01d9dd97663d8f63603ea930 (diff)
Begin working on paddles
git-svn-id: svn://mattst88.com/svn/glpong3d/trunk@6 4dd1920e-271a-0410-bca0-81b404a81564
Diffstat (limited to 'paddle.h')
-rw-r--r--paddle.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/paddle.h b/paddle.h
index 754cdbf..c9c23a3 100644
--- a/paddle.h
+++ b/paddle.h
@@ -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