Battlefield.Logic.Fields.Field.FillFieldWithEmptyCells C# (CSharp) Method

FillFieldWithEmptyCells() private method

Filling playfield with empty cells.
private FillFieldWithEmptyCells ( ) : void
return void
        private void FillFieldWithEmptyCells()
        {
            for (int row = 0; row < this.Size; row++)
            {
                for (int col = 0; col < this.Size; col++)
                {
                    this.Grid[row, col] = new Cell(new Coordinates(row, col));
                }
            }
        }