summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/wpn-misc.h
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-24 20:14:14 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-24 20:14:14 +0000
commit8ff8b514bd6f983e092b1ddddda6f29b5dd5197b (patch)
treeb9da152e8916d5eaa7e5935496a90a3616d3b8c8 /crawl-ref/source/wpn-misc.h
parent4896fc165af059b72aecc5b7f592d98bb38eadcd (diff)
downloadcrawl-ref-8ff8b514bd6f983e092b1ddddda6f29b5dd5197b.tar.gz
crawl-ref-8ff8b514bd6f983e092b1ddddda6f29b5dd5197b.zip
Made some more steps on the way to integrating itemprop.cc and
eliminating wpn-misc.cc. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup@107 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/wpn-misc.h')
-rw-r--r--crawl-ref/source/wpn-misc.h29
1 files changed, 3 insertions, 26 deletions
diff --git a/crawl-ref/source/wpn-misc.h b/crawl-ref/source/wpn-misc.h
index 55b9e35c86..e16ae910c2 100644
--- a/crawl-ref/source/wpn-misc.h
+++ b/crawl-ref/source/wpn-misc.h
@@ -16,32 +16,18 @@
#include "externs.h"
-
-/* ***********************************************************************
- * called from: food.h
- * *********************************************************************** */
-bool can_cut_meat(int wclass, int wtype);
-
-/* ***********************************************************************
- * called from: acr - fight - food - item_use - itemname - spells2
- * *********************************************************************** */
-int damage_type(int wclass, int wtype);
-int damage_type(const item_def &item);
-
-
// last updated: 10jun2000 {dlb}
/* ***********************************************************************
* called from: describe - fight - item_use
* *********************************************************************** */
int hands_reqd_for_weapon(int wclass, int wtype);
-
// last updated: 10jun2000 {dlb}
/* ***********************************************************************
- * called from: dungeon - fight - item_use - randart
+ * called from: describe - dungeon - fight - item_use - mstuff2 - randart -
+ * spells2 - spells3
* *********************************************************************** */
-bool is_demonic(unsigned char weapon_subtype);
-
+bool launches_things( unsigned char weapon_subtype );
// last updated: 10jun2000 {dlb}
/* ***********************************************************************
@@ -49,13 +35,4 @@ bool is_demonic(unsigned char weapon_subtype);
* *********************************************************************** */
unsigned char launched_by(unsigned char weapon_subtype);
-
-// last updated: 10jun2000 {dlb}
-/* ***********************************************************************
- * called from: describe - dungeon - fight - item_use - mstuff2 - randart -
- * spells2 - spells3
- * *********************************************************************** */
-bool launches_things( unsigned char weapon_subtype );
-
-
#endif