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