summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/effects.h
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-24 10:38:05 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-24 10:38:05 +0000
commit111787503763e9d3eeb4eef2248926bf4a4eeb98 (patch)
tree8af6fcd44ef05ff7cb092dfe3084c13f58e3ba74 /crawl-ref/source/effects.h
parenta7ba97bc95fa25180bd402a52943f223da2bf04a (diff)
downloadcrawl-ref-111787503763e9d3eeb4eef2248926bf4a4eeb98.tar.gz
crawl-ref-111787503763e9d3eeb4eef2248926bf4a4eeb98.zip
More cleanups.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6669 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/effects.h')
-rw-r--r--crawl-ref/source/effects.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/effects.h b/crawl-ref/source/effects.h
index f46bf26d2b..f19888b1d4 100644
--- a/crawl-ref/source/effects.h
+++ b/crawl-ref/source/effects.h
@@ -100,10 +100,10 @@ void yell(bool force = false);
/* ***********************************************************************
* called from: item_use - spell
* *********************************************************************** */
-int holy_word(int pow, int caster, int x, int y, bool silent);
+int holy_word(int pow, int caster, const coord_def& where, bool silent);
int holy_word_player(int pow, int caster);
-int holy_word_monsters(int x, int y, int pow, int caster);
+int holy_word_monsters(coord_def where, int pow, int caster);
// last updated 12may2000 {dlb}
@@ -111,10 +111,10 @@ int holy_word_monsters(int x, int y, int pow, int caster);
* called from: ability - decks - fight - it_use3 - item_use - mstuff2 -
* spell
* *********************************************************************** */
-int torment(int caster, int x, int y);
+int torment(int caster, const coord_def& where);
int torment_player(int pow, int caster);
-int torment_monsters(int x, int y, int pow, int caster);
+int torment_monsters(coord_def where, int pow, int caster);
bool forget_inventory(bool quiet = false);
bool vitrify_area(int radius);