Files
soundshot/main/gui.h
2025-06-24 09:20:40 -05:00

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