From be871d682e8087ab38c5e9e054190daf6f81fff2 Mon Sep 17 00:00:00 2001 From: Matthew Cline Date: Fri, 6 Nov 2009 19:26:31 -0800 Subject: Split up debug.cc --- crawl-ref/source/wiz-mon.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 crawl-ref/source/wiz-mon.h (limited to 'crawl-ref/source/wiz-mon.h') diff --git a/crawl-ref/source/wiz-mon.h b/crawl-ref/source/wiz-mon.h new file mode 100644 index 0000000000..a5838fa827 --- /dev/null +++ b/crawl-ref/source/wiz-mon.h @@ -0,0 +1,31 @@ +/* + * File: wiz-mon.h + * Summary: Monster related wizard functions. + * Written by: Linley Henzell and Jesse Jones + */ + +#ifndef WIZMON_H +#define WIZMON_H + +void wizard_create_spec_monster(void); +void wizard_create_spec_monster_name(void); +void wizard_spawn_control(); +void wizard_detect_creatures(); +void wizard_dismiss_all_monsters(bool force_all = false); +void debug_list_monsters(); +void debug_stethoscope(int mon); +void debug_miscast(int target); + +class monsters; +struct coord_def; + +void wizard_apply_monster_blessing(monsters* mon); +void wizard_give_monster_item(monsters* mon); +void wizard_move_player_or_monster(const coord_def& where); +void wizard_make_monster_summoned(monsters* mon); +void wizard_polymorph_monster(monsters* mon); +void debug_make_monster_shout(monsters* mon); + +void debug_pathfind(int mid); + +#endif -- cgit v1.2.3-54-g00ecf