Moved smode_t::sel and smode_t::active into a new structure, struct gui_t. This struc...
[xuni.git] / loop.h
blob2ff6ef9435db20cd031e02b168dec3b633fca152
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(struct smode_t *smode, struct font_t *font,
15 struct theme_t *theme, struct gui_t *gui);
17 #endif