summaryrefslogtreecommitdiff
path: root/paddle.c
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2007-12-04 18:36:23 +0000
committerMatt Turner <mattst88@gmail.com>2007-12-04 18:36:23 +0000
commit0e0bc15ac984dc5f5a96e346491c7e799d37baf1 (patch)
treea1791912ff3d0452ff1181a50793cf40e1b9a7bf /paddle.c
parent06a8f078d427e4fd8ce9fd578344a2e29bbe872a (diff)
redo branch is now trunk.
git-svn-id: svn://mattst88.com/svn/glpong/trunk@8 449aeecc-241a-0410-943f-e2f883e2d7a2
Diffstat (limited to 'paddle.c')
-rw-r--r--paddle.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/paddle.c b/paddle.c
deleted file mode 100644
index be1ba87..0000000
--- a/paddle.c
+++ /dev/null
@@ -1,23 +0,0 @@
-#include <stdlib.h>
-
-#include "SDL.h"
-#include "SDL_opengl.h"
-
-#include "paddle.h"
-#include "glpong.h"
-#include "ball.h"
-
-void GLPong_PaddlesCreate() {
- GLPong.Left.w = 8;
- GLPong.Left.h = 64;
- GLPong.Left.x = 0;
- GLPong.Left.y = (GLPong.h / 2) - (GLPong.h / 2);
- GLPong.Left.r = 1.0;
- GLPong.Left.g = 1.0;
- GLPong.Left.b = 1.0;
- GLPong.Left.a = 0.0;
- GLPong.Left.Top.w = GLPong.Left.w;
- GLPong.Left.Top.h = 1;
- GLPong.Left.Top.x = GLPong.Left.x;
- GLPong.Left.Top.y = GLPong.Left.y - 1;
-}