1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef DRAW_TEXT_H #define DRAW_TEXT_H #include "text-style.h" #include <SDL_ttf.h> // TTF_Font void draw_text( SDL_Renderer * const, TTF_Font * const, const text_style_t * const, const char * const ); #endif /* DRAW_TEXT_H */