summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dgn-maps.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/dgn-maps.h')
-rw-r--r--crawl-ref/source/dgn-maps.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/crawl-ref/source/dgn-maps.h b/crawl-ref/source/dgn-maps.h
new file mode 100644
index 0000000000..0267fbb294
--- /dev/null
+++ b/crawl-ref/source/dgn-maps.h
@@ -0,0 +1,22 @@
+/*
+ * File: dbg-dgn.h
+ * Summary: Dungeon related debugging functions.
+ * Written by: Linley Henzell and Jesse Jones
+ */
+
+#ifndef DBGMAPS_H
+#define DBGMAPS_H
+
+#ifdef DEBUG_DIAGNOSTICS
+void generate_map_stats();
+
+class map_def;
+
+void mapgen_report_map_try(const map_def &map);
+void mapgen_report_map_use(const map_def &map);
+void mapgen_report_error(const map_def &map, const std::string &err);
+void mapgen_report_map_build_start();
+void mapgen_report_map_veto();
+#endif
+
+#endif