aboutsummaryrefslogtreecommitdiff
path: root/Tile.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tile.h')
-rw-r--r--Tile.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/Tile.h b/Tile.h
index ebf00d9..538a857 100644
--- a/Tile.h
+++ b/Tile.h
@@ -2,7 +2,7 @@
#include "TileData.h"
#include "TileBehavior.h"
-#include "TileAppearance.h"
+#include "Color.h"
class Tile {
public:
@@ -11,8 +11,11 @@ public:
public:
TileData data;
- TileAppearance appearance;
+ Color color;
private:
TileBehavior behavior;
+
+public:
+ void update();
};