aboutsummaryrefslogtreecommitdiff
path: root/gfx.h
diff options
context:
space:
mode:
Diffstat (limited to 'gfx.h')
-rwxr-xr-xgfx.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/gfx.h b/gfx.h
new file mode 100755
index 0000000..7d531ae
--- /dev/null
+++ b/gfx.h
@@ -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 *);
+
+};