DEADSOFTWARE

f9a4cfb91a9d44970efc3c5a2b9ab9a454c2c17c
[flatwaifu.git] / src / render.h
1 #ifndef RENDER_H_INCLUDED
2 #define RENDER_H_INCLUDED
4 #include "system.h"
5 #include "menu.h"
7 const cfg_t *R_args (void);
8 const cfg_t *R_conf (void);
9 const menu_t *R_menu (void);
11 void R_init (void);
12 void R_draw (void);
13 void R_done (void);
15 void R_set_videomode (int w, int h, int fullscreen);
17 void R_switch_texture (int x, int y);
19 void R_get_name (int n, char s[8]);
20 int R_get_special_id (int n);
21 int R_get_swp (int n);
22 void R_begin_load (void);
23 void R_load (char s[8], int f);
24 void R_end_load (void);
25 void R_loadsky (int sky);
27 #endif /* RENDER_H_INCLUDED */