summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/teleport.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/teleport.h')
-rw-r--r--crawl-ref/source/teleport.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/crawl-ref/source/teleport.h b/crawl-ref/source/teleport.h
index 7c46188386..e54a437bc6 100644
--- a/crawl-ref/source/teleport.h
+++ b/crawl-ref/source/teleport.h
@@ -1,7 +1,13 @@
#ifndef TELEPORT_H
#define TELEPORT_H
-void blink_closer(const coord_def& target);
+class actor;
+class monsters;
+
+void blink_other_close(actor* victim, const coord_def& target);
+void blink_away(monsters* mon);
+void blink_range(monsters* mon);
+void blink_close(monsters* mon);
bool random_near_space(const coord_def& origin, coord_def& target,
bool allow_adjacent = false, bool restrict_LOS = true,