summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monstuff.h')
-rw-r--r--crawl-ref/source/monstuff.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/crawl-ref/source/monstuff.h b/crawl-ref/source/monstuff.h
index 296ee6b14e..3cc150ffdf 100644
--- a/crawl-ref/source/monstuff.h
+++ b/crawl-ref/source/monstuff.h
@@ -16,6 +16,8 @@
// useful macro
#define SAME_ATTITUDE(x) (mons_friendly(x)?BEH_FRIENDLY:BEH_HOSTILE)
+#define MONST_INTERESTING(x) (x->flags & MF_INTERESTING)
+
// for definition of type monsters {dlb}
#include "externs.h"
// for definition of type monsters {dlb}
@@ -147,5 +149,10 @@ bool hurt_monster(struct monsters *victim, int damage_dealt);
* *********************************************************************** */
bool heal_monster(struct monsters *patient, int health_boost, bool permit_growth);
+/* ***********************************************************************
+ * called from: monplace - spells2 - view
+ * *********************************************************************** */
+void seen_monster(struct monsters *monster);
+
#endif