summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/exclude.h
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-10-27 01:47:55 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-10-27 02:32:58 +0100
commit4c82c5be80278e2dee3bfc8bb1ca69724365fda5 (patch)
tree846c39495add6ad718f619a21901037bca595caa /crawl-ref/source/exclude.h
parent928479a2ce6674d27d6ef03d7a06f81803ccdfae (diff)
downloadcrawl-ref-4c82c5be80278e2dee3bfc8bb1ca69724365fda5.tar.gz
crawl-ref-4c82c5be80278e2dee3bfc8bb1ca69724365fda5.zip
Move autoexclude code from misc.cc to exclude.cc.
Diffstat (limited to 'crawl-ref/source/exclude.h')
-rw-r--r--crawl-ref/source/exclude.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/crawl-ref/source/exclude.h b/crawl-ref/source/exclude.h
new file mode 100644
index 0000000000..77b1244a9e
--- /dev/null
+++ b/crawl-ref/source/exclude.h
@@ -0,0 +1,9 @@
+#ifndef EXCLUDE_H
+#define EXCLUDE_H
+
+bool need_auto_exclude(const monsters *mon, bool sleepy = false);
+void set_auto_exclude(const monsters *mon);
+void remove_auto_exclude(const monsters *mon, bool sleepy = false);
+
+#endif
+