public Tile(int x, int y, int z, e_TileType typeIn, e_tileContents contentsIn) { xLoc = x; yLoc = y; zLoc = z; type = typeIn; contents = contentsIn; }
public Tile() { contents = e_tileContents.NONEXISTANT; }