Began creating the listbox widget. It's still just a structure.
[xuni.git] / loop.h
bloba0fa22bd41f1c19dd04d8363ab308ce51de7982b
1 #ifndef LOOP_H
2 #define LOOP_H
4 #include "graphics.h"
6 enum loop_mode_t {
7 MODE_NONE,
8 MODE_QUIT,
9 MODE_MENU,
10 MODE_GAME,
11 MODE_OPTIONS
14 void main_loop(SDL_Surface *screen, struct smode_t *smode,
15 struct font_t *font, struct theme_t *theme);
17 #endif