summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/items.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/items.h')
-rw-r--r--crawl-ref/source/items.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/crawl-ref/source/items.h b/crawl-ref/source/items.h
index 9d0b8eb93c..2a451f7551 100644
--- a/crawl-ref/source/items.h
+++ b/crawl-ref/source/items.h
@@ -76,7 +76,8 @@ int get_item_slot( int reserve = 50 );
* *********************************************************************** */
void unlink_item(int dest);
void destroy_item(int dest);
-void destroy_item_stack( int x, int y );
+void destroy_item_stack( int x, int y, int cause = -1 );
+void lose_item_stack( int x, int y );
// last updated: 08jun2000 {dlb}
/* ***********************************************************************
@@ -171,4 +172,7 @@ void autoinscribe();
bool item_is_equipped(const item_def &item);
+void item_was_lost(const item_def &item);
+void item_was_destroyed(const item_def &item, int cause = -1);
+
#endif