summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-project.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/mon-project.h')
-rw-r--r--crawl-ref/source/mon-project.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/crawl-ref/source/mon-project.h b/crawl-ref/source/mon-project.h
new file mode 100644
index 0000000000..3f17a9c755
--- /dev/null
+++ b/crawl-ref/source/mon-project.h
@@ -0,0 +1,17 @@
+/*
+ * File: mon-project.cc
+ * Summary: Slow projectiles, done as monsters.
+ * Written by: Adam Borowski
+ */
+
+#ifndef MON_PROJECT_H
+#define MON_PROJECT_H
+
+#include "beam.h"
+
+bool mons_is_projectile(monster_type mt);
+
+bool cast_iood(actor *caster, int pow, bolt *beam);
+bool iood_act(monsters &mon);
+
+#endif