summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/target.h
diff options
context:
space:
mode:
authorRaphael Langella <raphael.langella@gmail.com>2011-07-11 15:37:47 +0000
committerRaphael Langella <raphael.langella@gmail.com>2011-07-11 21:34:47 +0200
commitfdfc2aad04f741a5fc05778aecc2484cb2158411 (patch)
treea3c0a6ae584988679753c632f39c484238dca18a /crawl-ref/source/target.h
parent6a3a087368c481ab558f283c63aa7908fcc5c2e5 (diff)
downloadcrawl-ref-fdfc2aad04f741a5fc05778aecc2484cb2158411.tar.gz
crawl-ref-fdfc2aad04f741a5fc05778aecc2484cb2158411.zip
Print mindless in monster status only when using the healing ability.
Diffstat (limited to 'crawl-ref/source/target.h')
-rw-r--r--crawl-ref/source/target.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/target.h b/crawl-ref/source/target.h
index 290be60fd7..91c944328b 100644
--- a/crawl-ref/source/target.h
+++ b/crawl-ref/source/target.h
@@ -2,6 +2,7 @@
#define TARGET_H
#include "beam.h"
+#include "mon-info.h"
enum aff_type // sign and non-zeroness matters
{
@@ -86,4 +87,6 @@ public:
std::vector<std::vector<coord_def> > queue;
};
+typedef std::vector<std::string> (*desc_filter) (const monster_info& mi);
+
#endif