diff options
Diffstat (limited to 'glpong3d.h')
-rw-r--r-- | glpong3d.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -13,6 +13,11 @@ typedef struct { GLfloat x, y;
} Mouse_t;
+typedef struct {
+ GLuint context;
+ GLuint font;
+} GLC_t;
+
struct {
SDL_Event Event;
SDL_Surface * Surface;
@@ -20,8 +25,10 @@ struct { Paddle_t Front;
Paddle_t Back;
Mouse_t Mouse;
+ GLC_t GLC;
GLfloat w;
GLfloat h;
+ GLuint fps;
Sint8 done;
} GLPong;
|