summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/los_def.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-12-02 02:34:07 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-12-02 02:34:07 +0100
commit8cdf2433051a953950824266ec20c5d91811d610 (patch)
tree07349d2d8bc7c06e2d790eb903dc2f1b4a860457 /crawl-ref/source/los_def.h
parent4eca7f7cfa65f3400900f5bb97e5e838b43262c7 (diff)
downloadcrawl-ref-8cdf2433051a953950824266ec20c5d91811d610.tar.gz
crawl-ref-8cdf2433051a953950824266ec20c5d91811d610.zip
Drop los_glob.
Diffstat (limited to 'crawl-ref/source/los_def.h')
-rw-r--r--crawl-ref/source/los_def.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/crawl-ref/source/los_def.h b/crawl-ref/source/los_def.h
index 870b78152c..015587a2ac 100644
--- a/crawl-ref/source/los_def.h
+++ b/crawl-ref/source/los_def.h
@@ -15,27 +15,6 @@ public:
virtual bool see_cell(const coord_def& p) const = 0;
};
-class los_glob : public los_base
-{
- los_type lt;
- coord_def center;
- circle_def bds;
-
-public:
- los_glob() {}
- los_glob(const coord_def& c, los_type l,
- const circle_def &b = BDS_DEFAULT)
- : lt(l), center(c), bds(b) {}
-
- los_glob& operator=(const los_glob& other);
-
- coord_def get_center() const;
- circle_def get_bounds() const;
-
- bool in_bounds(const coord_def& p) const;
- bool see_cell(const coord_def& p) const;
-};
-
class los_def : public los_base
{
los_grid show;