]> git.r.bdr.sh - rbdr/pico-engine/blob - gfx.h
Update project so it compiles
[rbdr/pico-engine] / gfx.h
1 /*
2 * Module Name: Gfx
3 * Description: Abstract some graphic functions to draw surfaces. Simplify SDL tasks
4 */
5
6
7 class Gfx
8 {
9 public:
10
11 static void drawsurface(SDL_Surface *, int, int, SDL_Surface *);
12 static void drawsurface(int, int, int, int, SDL_Surface *, int, int, SDL_Surface *);
13
14 };