diff options
Diffstat (limited to 'src/ahoy/gui.h')
-rw-r--r-- | src/ahoy/gui.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ahoy/gui.h b/src/ahoy/gui.h index 251045e..e262620 100644 --- a/src/ahoy/gui.h +++ b/src/ahoy/gui.h @@ -1,7 +1,21 @@ #ifndef AHOY_AHOY_GUI_H #define AHOY_AHOY_GUI_H +#include <stddef.h> +#include <stdint.h> + +typedef enum { + GUI_RUNNING, + GUI_PAUSED, + GUI_STOP, +} guistate; + void wininit(void); void winfree(void); +void winclr(void); +void windrw(void); +void readkb(void); + +extern guistate gs; #endif /* !AHOY_AHOY_GUI_H */ |