DEADSOFTWARE

73fa932dc9d323d076fb3c05906669449876b4fd
[flatwaifu.git] / src / render.h
1 #ifndef RENDER_H_INCLUDED
2 #define RENDER_H_INCLUDED
4 #include "menu.h"
6 extern int SCRW, SCRH; // from vga.c
8 const menu_t *R_menu (void);
9 void R_init (void);
10 void R_draw (void);
11 void R_done (void);
13 void R_set_videomode (int w, int h, int fullscreen);
15 void R_get_name (int n, char s[8]);
16 int R_get_special_id (int n);
17 void R_begin_load (void);
18 void R_load (char s[8], int f);
19 void R_end_load (void);
20 void R_loadsky (int sky);
22 #endif /* RENDER_H_INCLUDED */