summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/item_use.h')
-rw-r--r--crawl-ref/source/item_use.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/crawl-ref/source/item_use.h b/crawl-ref/source/item_use.h
index 4477979152..8bc8662938 100644
--- a/crawl-ref/source/item_use.h
+++ b/crawl-ref/source/item_use.h
@@ -181,10 +181,12 @@ int item_special_wield_effect(const item_def &item);
bool wearing_slot(int inv_slot);
#ifdef USE_TILE
-/* ***********************************************************************
- * called from: acr
- * *********************************************************************** */
-void tile_use_item(int idx, InvAction act);
+void tile_item_use_floor(int idx);
+void tile_item_pickup(int idx);
+void tile_item_drop(int idx);
+void tile_item_eat_floor(int idx);
+void tile_item_use(int idx);
+void tile_item_use_secondary(int idx);
#endif
#endif