summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-goditem.h
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-06-26 21:59:25 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-06-26 22:25:41 -0700
commit358e3e32b8045aaea1f830060ecea228ff53389d (patch)
tree11db7192d8d5efbcb0f2da6c58a8c111c6b77cf4 /crawl-ref/source/spl-goditem.h
parentd16265b1dca17f728ff9a9900cd72ea716958647 (diff)
downloadcrawl-ref-358e3e32b8045aaea1f830060ecea228ff53389d.tar.gz
crawl-ref-358e3e32b8045aaea1f830060ecea228ff53389d.zip
Partially refactor cast_healing()
Diffstat (limited to 'crawl-ref/source/spl-goditem.h')
-rw-r--r--crawl-ref/source/spl-goditem.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/crawl-ref/source/spl-goditem.h b/crawl-ref/source/spl-goditem.h
index 04c7ea0daf..8a9f605b85 100644
--- a/crawl-ref/source/spl-goditem.h
+++ b/crawl-ref/source/spl-goditem.h
@@ -1,9 +1,12 @@
#ifndef SPL_GODITEM_H
#define SPL_GODITEM_H
-int cast_healing(int pow, int max_pow, bool divine_ability = false,
- const coord_def& where = coord_def(0, 0),
- bool not_self = false, targ_mode_type mode = TARG_NUM_MODES);
+#include "spl-cast.h"
+
+spret_type cast_healing(int pow, int max_pow, bool divine_ability = false,
+ const coord_def& where = coord_def(0, 0),
+ bool not_self = false,
+ targ_mode_type mode = TARG_NUM_MODES);
void antimagic();
void debuff_monster(monster* mons);