diff options
Diffstat (limited to 'gfx.h')
| -rwxr-xr-x | gfx.h | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,14 @@ +/*
+ * Module Name: Gfx
+ * Description: Abstract some graphic functions to draw surfaces. Simplify SDL tasks
+ */
+
+
+class Gfx
+{
+public:
+
+ static void drawsurface(SDL_Surface *, int, int, SDL_Surface *);
+ static void drawsurface(int, int, int, int, SDL_Surface *, int, int, SDL_Surface *);
+
+};
|