public Tile(PointB ind, TypeTile t) { index = ind; type = t; bmp = new Bitmap((int)TileSize, (int)TileSize); }
public Tile(PointB ind) { index = ind; type = TypeTile.EMPTY; bmp = new Bitmap((int)TileSize, (int)TileSize); }