summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/shout.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/shout.h')
-rw-r--r--crawl-ref/source/shout.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/crawl-ref/source/shout.h b/crawl-ref/source/shout.h
new file mode 100644
index 0000000000..eee25615e8
--- /dev/null
+++ b/crawl-ref/source/shout.h
@@ -0,0 +1,13 @@
+#ifndef SHOUT_H
+#define SHOUT_H
+
+bool noisy(int loudness, const coord_def& where, int who,
+ bool mermaid = false);
+bool noisy(int loudness, const coord_def& where, const char *msg = NULL,
+ int who = -1, bool mermaid = false);
+void blood_smell( int strength, const coord_def& where);
+void handle_monster_shouts(monsters* monster, bool force = false);
+bool check_awaken(monsters* monster);
+
+#endif
+