DEADSOFTWARE

headers describes that c-files implements
[flatwaifu.git] / src / render.h
index 553ca98d57f358c0c0a69a7f13b88b47c45adfe9..71d4365f659451e0b2ae2d329fdd72548e9c6eec 100644 (file)
@@ -1 +1,22 @@
-void G_draw (void);
+#ifndef RENDER_H_INCLUDED
+#define RENDER_H_INCLUDED
+
+extern int SCRW, SCRH; // from vga.c
+
+void R_draw (void);
+void R_alloc (void);
+void R_init (void);
+void R_done (void);
+
+void R_setgamma (int g);
+int R_getgamma (void);
+void R_toggle_fullscreen (void);
+
+void R_get_name (int n, char s[8]);
+int R_get_special_id (int n);
+void R_begin_load (void);
+void R_load (char s[8], int f);
+void R_end_load (void);
+void R_loadsky (int sky);
+
+#endif /* RENDER_H_INCLUDED */