public BigTile(TileClass tc, Tile lt, Tile rt, Tile lb, Tile rb, int id) { ID = id; tileClass = tc; LeftTop = lt; RightTop = rt; LeftBottom = lb; RightBottom = rb; rotation = 0; Pos = null; }
public Tile[] getTileArray() { Tile[] result = new Tile[4]; result[0] = getLeftTop(); result[1] = getLeftBottom(); result[2] = getRightTop(); result[3] = getRightBottom(); return result; }