summaryrefslogtreecommitdiff
path: root/common/tile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/tile.cpp')
-rw-r--r--common/tile.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/common/tile.cpp b/common/tile.cpp
index 6164fcc..1b3dcd7 100644
--- a/common/tile.cpp
+++ b/common/tile.cpp
@@ -7,9 +7,3 @@ Tile::Tile() {
Tile::Tile(Tile::Type t, bool re, bool ro) : type(t), red(re), rotated(ro){
}
-
-Tile::Tile(uint16_t w) {
- type = Type(w & 0x00ff);
- red = (w >> 8);
- rotated = (w >> 9);
-}