#include #include #include class Text { private: SDL_Surface* surface; SDL_Texture* texture; TTF_Font* font; SDL_Color color; SDL_Rect rect; public: Text(TTF_Font* font, SDL_Color color); void draw(SDL_Renderer* renderer, std::string text, int x, int y); };