SnakeBattleNet.Core.BattleField.CreateEmpty C# (CSharp) Method

CreateEmpty() private method

private CreateEmpty ( ) : void
return void
        private void CreateEmpty()
        {
            for (var x = 1; x < SideLength - 1; x++)
                for (var y = 1; y < SideLength - 1; y++)
                {
                    field[x, y] = Content.Empty;
                }
        }