#ifndef SDL_HELPERS_H_ #define SDL_HELPERS_H_ #include #include // Call this before everything // Prints its messages bool init_sdl(); // Call this at the end only if init has passed void clean_sdl(); // A simple way to get a font pointer to use // Can return NULL TTF_Font* get_font(const std::string& filename, int size); #endif // SDL_HELPERS_H_