summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilecell.h
diff options
context:
space:
mode:
authorontoclasm <yokomeshi@gmail.com>2012-11-16 00:14:46 -0600
committerAdam Borowski <kilobyte@angband.pl>2013-01-08 04:00:28 +0100
commit2c5fb7653384d0f72babaf2312c50989ea0b1021 (patch)
treef68796e9e306f0a135ad399117b0b080f4025973 /crawl-ref/source/tilecell.h
parentaf44d5ed3a4f1c48834bbfd36d49d91f1bd6baca (diff)
downloadcrawl-ref-2c5fb7653384d0f72babaf2312c50989ea0b1021.tar.gz
crawl-ref-2c5fb7653384d0f72babaf2312c50989ea0b1021.zip
Display heat auras in tiles
Diffstat (limited to 'crawl-ref/source/tilecell.h')
-rw-r--r--crawl-ref/source/tilecell.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/tilecell.h b/crawl-ref/source/tilecell.h
index 1e3c291386..44bf478c38 100644
--- a/crawl-ref/source/tilecell.h
+++ b/crawl-ref/source/tilecell.h
@@ -37,6 +37,7 @@ struct packed_cell
uint8_t travel_trail;
bool quad_glow;
bool disjunct;
+ uint8_t heat_aura;
bool operator ==(const packed_cell &other) const;
bool operator !=(const packed_cell &other) const { return !(*this == other); }
@@ -46,7 +47,7 @@ struct packed_cell
is_moldy(false), glowing_mold(false), is_sanctuary(false),
is_liquefied(false), mangrove_water(false), orb_glow(0),
blood_rotation(0), old_blood(false), travel_trail(0),
- quad_glow(false), disjunct(false) {}
+ quad_glow(false), disjunct(false), heat_aura(false) {}
packed_cell(const packed_cell* c) : num_dngn_overlay(c->num_dngn_overlay),
fg(c->fg), bg(c->bg), flv(c->flv),
@@ -64,7 +65,8 @@ struct packed_cell
old_blood(c->old_blood),
travel_trail(c->travel_trail),
quad_glow(c->quad_glow),
- disjunct(c->disjunct) {}
+ disjunct(c->disjunct),
+ heat_aura(c->heat_aura) {}
void clear();
};