summaryrefslogtreecommitdiff
path: root/paddle.h
diff options
context:
space:
mode:
Diffstat (limited to 'paddle.h')
-rw-r--r--paddle.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/paddle.h b/paddle.h
new file mode 100644
index 0000000..6ec3893
--- /dev/null
+++ b/paddle.h
@@ -0,0 +1,14 @@
+#ifndef PADDLE_H
+#define PADDLE_H
+
+typedef struct {
+ GLfloat w, h, x, y;
+ GLfloat r, g, b, a;
+ struct {
+ GLfloat w, h, x, y;
+ } Top, Bottom;
+} Paddle_t;
+
+void GLPong_PaddlesCreate();
+
+#endif