summaryrefslogtreecommitdiff
path: root/common/tile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/tile.cpp')
-rw-r--r--common/tile.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/common/tile.cpp b/common/tile.cpp
new file mode 100644
index 0000000..bf39a4e
--- /dev/null
+++ b/common/tile.cpp
@@ -0,0 +1,13 @@
+#include "tile.h"
+
+Tile::Tile() {
+
+}
+
+Tile::Tile(Tile::Type t) : type(t) {
+
+}
+
+Tile::Tile(uint8_t b) : type((Type)b) {
+
+}