summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2010-11-25 11:14:31 +0100
committerVegard Storheil Eriksen <zyp@jvnv.net>2010-11-25 11:14:31 +0100
commitc55c46cee617e5b3af68bb134f8210221c2ebf8e (patch)
treedda74e3b847d1dc695a8a04cef1a1e841e1cf096 /common
parent2491b378a650e152522818543e375ae8339f128c (diff)
Add invisible-flag to Tile.
Diffstat (limited to 'common')
-rw-r--r--common/tile.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/tile.h b/common/tile.h
index 90e25dc..fe25a06 100644
--- a/common/tile.h
+++ b/common/tile.h
@@ -61,6 +61,7 @@ class Tile {
Type type;
bool red;
bool rotated;
+ bool invisible;
//! Default constructor.
Tile();
@@ -93,6 +94,7 @@ class Tile {
ar & type;
ar & red;
ar & rotated;
+ ar & invisible;
}
};