summaryrefslogtreecommitdiff
path: root/include/gui/button.h
blob: 62f75a3e01088359c2d6cceeb729afa188cc5c26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef UPEM_MORPHING_BUTTON
#define UPEM_MORPHING_BUTTON

/**
 * File: button.h
 */

typedef struct {
  Component component;
} Button;

void button_init(Button *button, char *text);

void button_free(Button *button);

#endif