summaryrefslogtreecommitdiff
path: root/common/tile.cpp
blob: bf39a4e0839ae68d66e1f67244467fb49ba28798 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "tile.h"

Tile::Tile() {
	
}

Tile::Tile(Tile::Type t) : type(t) {
	
}

Tile::Tile(uint8_t b) : type((Type)b) {
	
}