summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/delay.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/delay.h')
-rw-r--r--crawl-ref/source/delay.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/crawl-ref/source/delay.h b/crawl-ref/source/delay.h
index ed496aa9cc..c45d5a0b2b 100644
--- a/crawl-ref/source/delay.h
+++ b/crawl-ref/source/delay.h
@@ -14,14 +14,15 @@
#include "enum.h"
-void start_delay( int type, int turns, int parm1 = 0, int parm2 = 0 );
-void stop_delay( void );
+void start_delay( delay_type type, int turns, int parm1 = 0, int parm2 = 0 );
+void stop_delay( void );
bool you_are_delayed( void );
-int current_delay_action( void );
+delay_type current_delay_action( void );
void handle_delay( void );
bool is_run_delay(int delay);
bool is_being_butchered(const item_def &item);
+void stop_butcher_delay();
const char *activity_interrupt_name(activity_interrupt_type ai);
activity_interrupt_type get_activity_interrupt(const std::string &);