summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/wiz-dgn.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/wiz-dgn.h')
-rw-r--r--crawl-ref/source/wiz-dgn.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/crawl-ref/source/wiz-dgn.h b/crawl-ref/source/wiz-dgn.h
new file mode 100644
index 0000000000..63e52ed8ae
--- /dev/null
+++ b/crawl-ref/source/wiz-dgn.h
@@ -0,0 +1,26 @@
+/*
+ * File: wiz-dgn.h
+ * Summary: Dungeon related wizard functions.
+ * Written by: Linley Henzell and Jesse Jones
+ */
+
+#ifndef WIZDGN_H
+#define WIZDGN_H
+
+#include <string>
+
+void wizard_create_portal();
+void wizard_create_feature_number();
+void wizard_create_feature_name();
+void wizard_list_branches();
+void wizard_map_level();
+void wizard_list_items();
+void wizard_place_stairs( bool down );
+void wizard_level_travel( bool down );
+void wizard_interlevel_travel();
+void debug_make_trap( void );
+void debug_make_shop( void );
+void debug_place_map();
+void debug_test_explore();
+
+#endif