From c55c46cee617e5b3af68bb134f8210221c2ebf8e Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Thu, 25 Nov 2010 11:14:31 +0100 Subject: Add invisible-flag to Tile. --- common/tile.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'common') 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; } }; -- cgit v1.2.3