Example #1
0
 private void CellFilledHandler(Cell cell, Tile tile)
 {
     if (!ActiveTiles.Contains(tile))
     {
         ActiveTiles.Add(tile);
         GetCellStatus();
         Debug.Log(" TILE  " + tile.name + " ADDED TO CELL " + (cell.CellIndex) + " STATUS IS " + CellStatus);
     }
 }