blob: 659c0574c9531941778288215f00fe6725a0f4b9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <stdint.h>
typedef struct EVELabel {
EVERect g;
EVEFont *font;
char *title;
} EVELabel;
void eve_label_init(EVELabel *label, EVERect *g, EVEFont *font, char *title);
void eve_label_draw(EVELabel *label);
|