/* * 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 *); };