summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stuff.h
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-30 14:07:45 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-30 14:07:45 +0000
commitf984dabc74b0a6370e91147b6709b3ca6e591448 (patch)
treecfdd38d2a66750fc9c1cd5c0942eb1990c81492b /crawl-ref/source/stuff.h
parent9f1b85395c59bf30df202366aa077530176196bc (diff)
downloadcrawl-ref-f984dabc74b0a6370e91147b6709b3ca6e591448.tar.gz
crawl-ref-f984dabc74b0a6370e91147b6709b3ca6e591448.zip
Clean up Animate Dead. Also fix messaging.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8853 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/stuff.h')
-rw-r--r--crawl-ref/source/stuff.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/stuff.h b/crawl-ref/source/stuff.h
index 74e90b86e7..2a63276b7a 100644
--- a/crawl-ref/source/stuff.h
+++ b/crawl-ref/source/stuff.h
@@ -90,7 +90,8 @@ public:
radius_iterator( const coord_def& center, int radius,
bool roguelike_metric = true,
bool require_los = true,
- bool exclude_center = false );
+ bool exclude_center = false,
+ const env_show_grid* losgrid = NULL );
bool done() const;
void reset();
operator bool() const { return !done(); }
@@ -109,6 +110,7 @@ private:
coord_def location, center;
int radius;
bool roguelike_metric, require_los, exclude_center;
+ const env_show_grid* losgrid;
bool iter_done;
};