summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-death.h
diff options
context:
space:
mode:
authorVsevolod Kozlov <zaba@wybt.net>2010-12-29 14:10:47 +0300
committerVsevolod Kozlov <zaba@wybt.net>2010-12-29 14:10:47 +0300
commit0daedcb047f990b73927d7a0230802fad8e99a5f (patch)
treebea243158afb29f6948540b95d7bc5fb6893d868 /crawl-ref/source/mon-death.h
parent44366bd62b2519b63740754285a33e393e42aab4 (diff)
downloadcrawl-ref-0daedcb047f990b73927d7a0230802fad8e99a5f.tar.gz
crawl-ref-0daedcb047f990b73927d7a0230802fad8e99a5f.zip
Add #ifndef/#define MONDEATH_H to mon-death.h.
Diffstat (limited to 'crawl-ref/source/mon-death.h')
-rw-r--r--crawl-ref/source/mon-death.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/mon-death.h b/crawl-ref/source/mon-death.h
index 464c9ff334..7e25fed70e 100644
--- a/crawl-ref/source/mon-death.h
+++ b/crawl-ref/source/mon-death.h
@@ -3,6 +3,9 @@
* Summary: Monster death functionality (kraken, uniques, and so-on).
*/
+#ifndef MONDEATH_H
+#define MONDEATH_H
+
bool mons_is_pikel (monster* mons);
void pikel_band_neutralise(bool check_tagged = false);
@@ -25,3 +28,4 @@ void shedu_do_resurrection(const monster *mons);
// Can't constify mons, need to change numbers.
void shedu_do_actual_resurrection (monster* mons);
+#endif