aboutsummaryrefslogtreecommitdiff
path: root/include/saffron_text.h
blob: 51bfc47585615ef98f3969139b7160bd92663589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef SAFFRON_TEXT_H
#define SAFFRON_TEXT_H

#include "saffron_widget.h"
#include <SDL3/SDL_pixels.h>
#include <SDL3_ttf/SDL_ttf.h>

typedef struct {
	SaffronWidget base;
	char* text;
	TTF_Font* font;
	SDL_Color color;
} SaffronText;

#endif