Mercurial > hg > pub > prymula > com
view lamertetris/sources/text.h @ 18:b5e2aba31fdb
lamertetris-0.230821-3 package for arch
author | Przemyslaw <prymula76@outlook.com> |
---|---|
date | Sun, 31 Mar 2024 15:35:26 +0200 |
parents | 2787f5e749ae |
children |
line wrap: on
line source
#ifndef TEXT_H #define TEXT_H #include <SDL2/SDL.h> #include <SDL_ttf.h> #include <iostream> class Text { public: Text(); SDL_Surface* loadFromRenderedText( std::string textureText, SDL_Color textColor, TTF_Font* font); private: int mWidth, mHeight; }; #endif //TEXT_H