#ifndef TEXT_LABEL_INCLUDED
#define TEXT_LABEL_INCLUDED
#include <SDL2/SDL.h>
typedef struct
{
char* text;
SDL_Rect textZone;
}TextLabel;
#endif