#ifndef RPG_H #define RPG_H #include #include #include "structures.h" #define DEFAULT_WIDTH 1024 #define DEFAULT_HEIGHT 768 struct rpg_t { SDL_Surface *screen; TTF_Font *font; /* XXX those are deprecated */ SURFACES surfaces; POSITIONS positions; }; extern struct rpg_t rpg_g; #endif /* RPG_H */