home · contact · privacy
Make server config files more readable, their parsing more lenient.
[plomrogue] / src / server / configfile.h
diff --git a/src/server/configfile.h b/src/server/configfile.h
new file mode 100644 (file)
index 0000000..5fc2a0d
--- /dev/null
@@ -0,0 +1,18 @@
+/* src/server/configfile.h
+ *
+ * Reading in the config file of map object and map object action definitions.
+ */
+
+#ifndef CONFIGFILE_H
+#define CONFIGFILE_H
+
+
+
+/* Parse file at world.path_config into map object and map object action
+ * definitions at world.map_obj_defs and world.map_obj_acts.
+ */
+extern void read_config_file();
+
+
+
+#endif