summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/evoke.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-04-14 10:54:46 +0200
committerAdam Borowski <kilobyte@angband.pl>2011-04-14 10:54:46 +0200
commit4e12202f4e1c3200744a956396413848de7f224d (patch)
tree2b4b798d3143698f44009003b9f30b681a8304c5 /crawl-ref/source/evoke.h
parent586def07c6c683cb2e5b4fb34225cceb70171a15 (diff)
downloadcrawl-ref-4e12202f4e1c3200744a956396413848de7f224d.tar.gz
crawl-ref-4e12202f4e1c3200744a956396413848de7f224d.zip
Rename it_use3.cc to evoke.cc
Diffstat (limited to 'crawl-ref/source/evoke.h')
-rw-r--r--crawl-ref/source/evoke.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/crawl-ref/source/evoke.h b/crawl-ref/source/evoke.h
new file mode 100644
index 0000000000..edc8ab53a4
--- /dev/null
+++ b/crawl-ref/source/evoke.h
@@ -0,0 +1,19 @@
+/**
+ * @file
+ * @brief Functions for using some of the wackier inventory items.
+**/
+
+
+#ifndef IT_USE3_H
+#define IT_USE3_H
+
+void skill_manual(int slot);
+
+void tome_of_power(int slot);
+
+bool evoke_item(int slot = -1);
+
+void shadow_lantern_effect();
+bool disc_of_storms(bool drac_breath = false);
+
+#endif