summaryrefslogtreecommitdiff
path: root/src/monster3.hpp
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2015-03-07 16:55:40 +0100
committerBardur Arantsson <bardur@scientician.net>2015-03-07 16:55:40 +0100
commitd2b23810e3349e7cb12d8c51d2a630c6a31d7cd0 (patch)
tree762d31c22288e584e12dcf3df4ee316b57f27fc8 /src/monster3.hpp
parentd379c47aaec011921c1d09140ee1098a7053b5b6 (diff)
Split monster3.cc declarations to separate header file
Diffstat (limited to 'src/monster3.hpp')
-rw-r--r--src/monster3.hpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/monster3.hpp b/src/monster3.hpp
new file mode 100644
index 00000000..394c5c1d
--- /dev/null
+++ b/src/monster3.hpp
@@ -0,0 +1,19 @@
+#pragma once
+
+#include "angband.h"
+
+extern void dump_companions(FILE *outfile);
+extern void do_cmd_companion(void);
+extern bool_ do_control_reconnect(void);
+extern bool_ do_control_drop(void);
+extern bool_ do_control_magic(void);
+extern bool_ do_control_pickup(void);
+extern bool_ do_control_inven(void);
+extern bool_ do_control_walk(void);
+extern bool_ can_create_companion(void);
+extern void ai_deincarnate(int m_idx);
+extern bool_ ai_possessor(int m_idx, int o_idx);
+extern bool_ ai_multiply(int m_idx);
+extern bool_ change_side(monster_type *m_ptr);
+extern int is_friend(monster_type *m_ptr);
+extern bool_ is_enemy(monster_type *m_ptr, monster_type *t_ptr);