Beispiel #1
0
        private static void SwapCells(LinesCell cell1, LinesCell cell2)
        {
            int  tempColor   = cell1.Type;
            bool tempIsEmpty = cell1.IsEmpty;

            cell1.SetState(cell2.IsEmpty, cell2.Type);
            cell2.SetState(tempIsEmpty, tempColor);
        }
Beispiel #2
0
        private void SetCellToRandom(LinesCell cell)
        {
            int newColor = (Random.Range(0, colorCount));

            cell.SetState(false, newColor);
        }