aboutsummaryrefslogtreecommitdiff
path: root/gfx.h
blob: 7d531ae58f6aa18364ca0d966ce8fe705e3b989e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 *);
	
};