]>
Commit | Line | Data |
---|---|---|
1 | /*\r | |
2 | * Module Name: Gfx\r | |
3 | * Description: Abstract some graphic functions to draw surfaces. Simplify SDL tasks\r | |
4 | */\r | |
5 | \r | |
6 | \r | |
7 | class Gfx\r | |
8 | {\r | |
9 | public:\r | |
10 | \r | |
11 | static void drawsurface(SDL_Surface *, int, int, SDL_Surface *);\r | |
12 | static void drawsurface(int, int, int, int, SDL_Surface *, int, int, SDL_Surface *);\r | |
13 | \r | |
14 | };\r |