font.c was created, and the Makefiles updated to reflect this. It contains reload_fon...
[xuni.git] / loop.h
blobfacbc6c6f4201096daa0acfe0e32752c3365e5d3
1 /*! \file loop.h
3 */
5 #ifndef LOOP_H
6 #define LOOP_H
8 #include "graphics.h"
9 #include "gui.h"
11 enum loop_mode_t {
12 MODE_NONE,
13 MODE_QUIT,
14 MODE_MENU,
15 MODE_GAME,
16 MODE_OPTIONS
19 void main_loop(struct smode_t *smode, struct font_t *font,
20 struct theme_t *theme, struct gui_t *gui);
22 #endif