view lamertetris/sources/text.h @ 17:e9c503d896a6

flappyufo-0.230919-1_add_pkgbuild
author Przemyslaw <prymula76@outlook.com>
date Sat, 24 Feb 2024 17:47:35 +0100
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