00001 /* 00002 * File: wiz-dgn.h 00003 * Summary: Dungeon related wizard functions. 00004 * Written by: Linley Henzell and Jesse Jones 00005 */ 00006 00007 #ifndef WIZDGN_H 00008 #define WIZDGN_H 00009 00010 #include <string> 00011 00012 void wizard_create_portal(); 00013 void wizard_create_feature(); 00014 void wizard_list_branches(); 00015 void wizard_reveal_traps(); 00016 void wizard_map_level(); 00017 void wizard_list_items(); 00018 void wizard_place_stairs(bool down); 00019 void wizard_level_travel(bool down); 00020 void wizard_interlevel_travel(); 00021 void wizard_list_levels(); 00022 void debug_make_trap(void); 00023 void debug_make_shop(void); 00024 void debug_place_map(); 00025 void debug_test_explore(); 00026 00027 #endif