blob: 0c623d3eee765c9bd9462d8c0729d33178f69c0b (
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, char *title, EVEFont *font);
void eve_label_draw(EVELabel *label);
|