summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/wiz-you.h
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-08-15 00:21:17 -0400
committerJesse Luehrs <doy@tozt.net>2014-08-15 00:30:19 -0400
commiteb103fec101bac54e16df0c72fb2a85ee45e5723 (patch)
tree1f9bd1a8953a3fbe3de0d25871545ce7ca8a948b /crawl-ref/source/wiz-you.h
parent6e25fd0e675c04a54b57fd05d1961e108bd139c5 (diff)
downloadcrawl-ref-eb103fec101bac54e16df0c72fb2a85ee45e5723.tar.gz
crawl-ref-eb103fec101bac54e16df0c72fb2a85ee45e5723.zip
split dump file loading out to a separate file (and class)
Diffstat (limited to 'crawl-ref/source/wiz-you.h')
-rw-r--r--crawl-ref/source/wiz-you.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/crawl-ref/source/wiz-you.h b/crawl-ref/source/wiz-you.h
index f8ac4ca0cf..7af0e88935 100644
--- a/crawl-ref/source/wiz-you.h
+++ b/crawl-ref/source/wiz-you.h
@@ -13,6 +13,7 @@ void wizard_memorise_spec_spell();
void wizard_heal(bool super_heal);
void wizard_set_hunger_state();
void wizard_set_piety();
+void wizard_set_piety_to(int new_piety, bool force = false);
void wizard_exercise_skill();
void wizard_set_abyss();
void wizard_set_skill_level(skill_type skill = SK_NONE);
@@ -29,7 +30,10 @@ void wizard_toggle_xray_vision();
void wizard_god_wrath();
void wizard_god_mollify();
void wizard_transform();
-void wizard_load_dump_file();
void wizard_join_religion();
+species_type find_species_from_string(const string &species_str);
+void wizard_change_species_to(species_type sp);
+job_type find_job_from_string(const string &job_str);
+void wizard_change_job_to(job_type job);
#endif