summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-abil.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/mon-abil.h')
-rw-r--r--crawl-ref/source/mon-abil.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/crawl-ref/source/mon-abil.h b/crawl-ref/source/mon-abil.h
new file mode 100644
index 0000000000..527f71dc3e
--- /dev/null
+++ b/crawl-ref/source/mon-abil.h
@@ -0,0 +1,19 @@
+/*
+ * File: mon-abil.h
+ * Summary: Monster abilities.
+ * Written by: Linley Henzell
+ */
+
+#ifndef MONABIL_H
+#define MONABIL_H
+
+class monsters;
+class bolt;
+
+bool mon_special_ability(monsters *monster, bolt & beem);
+void mon_nearby_ability(monsters *monster);
+
+bool ugly_thing_mutate(monsters *ugly, bool proximity = false);
+bool slime_split_merge(monsters *thing);
+
+#endif