diff options
Diffstat (limited to 'glpong3d.h')
-rw-r--r-- | glpong3d.h | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -45,19 +45,15 @@ typedef struct { } Mouse_t; typedef struct { - GLuint context; - GLuint font; -} GLC_t; - -struct { SDL_Surface * Surface; Ball_t Ball; Paddle_t Front; Paddle_t Back; Mouse_t Mouse; - GLC_t GLC; GLfloat fps; -} GLPong; +} GLPong_t; + +GLPong_t GLPong; void GLPong_Collide(Ball_t * ball, const Paddle_t * paddle); |