From 7afa089db8b01b1810c5903309f7302545638550 Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Mon, 19 Oct 2009 13:06:56 +0200 Subject: Convert exclusions to los_def. --- crawl-ref/source/travel.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'crawl-ref/source/travel.h') diff --git a/crawl-ref/source/travel.h b/crawl-ref/source/travel.h index a6fb14fc94..42232088f2 100644 --- a/crawl-ref/source/travel.h +++ b/crawl-ref/source/travel.h @@ -7,6 +7,9 @@ #define TRAVEL_H #include "externs.h" + +#include "los.h" + #include #include #include @@ -353,18 +356,18 @@ struct travel_exclude int radius; // exclusion radius bool autoexclude; // Was set automatically. int mon; // Monster around which exclusion is centered. - env_show_grid show; // los from exclusion centre - bool uptodate; // Is show up to date? + los_def los; // los from exclusion centre + bool uptodate; // Is los up to date? int radius_sq() const; - void set_exclude_show(); + void set_los(); bool affects(const coord_def& p) const; travel_exclude(const coord_def &p, int r = LOS_RADIUS, bool autoexcl = false, int mons = NON_MONSTER) : pos(p), radius(r), autoexclude(autoexcl), mon(mons) { - set_exclude_show(); + set_los(); } }; -- cgit v1.2.3-54-g00ecf