summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/env.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/env.h')
-rw-r--r--crawl-ref/source/env.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/crawl-ref/source/env.h b/crawl-ref/source/env.h
index d4c70f74eb..32ce82e92a 100644
--- a/crawl-ref/source/env.h
+++ b/crawl-ref/source/env.h
@@ -2,6 +2,7 @@
#define ENV_H
#include "monster.h"
+#include "show.h"
class crawl_exit_hook;
@@ -22,16 +23,14 @@ public:
FixedArray< map_cell, GXM, GYM > map; // discovered terrain
- // Glyphs of squares that are in LOS.
- env_show_grid show;
+ // Objects that are in LOS, used for drawing.
+ show_def show;
+ env_show_grid show_los; // Compatibility. TODO: remove.
// What would be visible, if all of the translucent wall were
// made opaque.
env_show_grid no_trans_show;
- FixedArray<unsigned short, ENV_SHOW_DIAMETER, ENV_SHOW_DIAMETER>
- show_col; // view window colour
-
#ifdef USE_TILE
// indexed by grid coords
FixedArray<tile_fg_store, GXM, GYM> tile_bk_fg;