14 lines
135 B
C
14 lines
135 B
C
#ifndef GUI_H
|
|
#define GUI_H
|
|
|
|
typedef enum
|
|
{
|
|
GUI_MAIN = 0,
|
|
GUI_MENU,
|
|
GUI_BUBBLE
|
|
} GuiMode_t;
|
|
|
|
void gui_start(void);
|
|
|
|
#endif
|