DEADSOFTWARE

headers describes that c-files implements
[flatwaifu.git] / src / config.h
index 1961ebeb55aabe7b9cc9bd8b5a1a87d648d68257..9601b893bc1e17c709f6cece7c7978e21e0130f5 100644 (file)
@@ -1,7 +1,6 @@
 /*
    Copyright (C) Prikol Software 1996-1997
    Copyright (C) Aleksey Volynskov 1996-1997
-   Copyright (C) <ARembo@gmail.com> 2011
 
    This file is part of the Doom2D:Rembo project.
 
    51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 */
 
-// Configuration
+#ifndef CONFIG_H_INCLUDED
+#define CONFIG_H_INCLUDED
 
-void CFG_args(int argc, char *argv[]);
-void CFG_load(void);
-void CFG_save(void);
+#include "glob.h"
 
-extern char cfg_file[];
+extern byte cheat;
+extern byte shot_vga;
+extern char cd_path[128];
+extern char cfg_file[128];
 
+void CFG_args (int argc, char *argv[]);
+void CFG_load (void);
+void CFG_save (void);
+
+#endif /* CONFIG_H_INCLUDED */