diff options
author | Vegard Storheil Eriksen <zyp@jvnv.net> | 2010-11-25 11:14:31 +0100 |
---|---|---|
committer | Vegard Storheil Eriksen <zyp@jvnv.net> | 2010-11-25 11:14:31 +0100 |
commit | c55c46cee617e5b3af68bb134f8210221c2ebf8e (patch) | |
tree | dda74e3b847d1dc695a8a04cef1a1e841e1cf096 /common | |
parent | 2491b378a650e152522818543e375ae8339f128c (diff) |
Add invisible-flag to Tile.
Diffstat (limited to 'common')
-rw-r--r-- | common/tile.h | 2 |
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; } }; |