SnakeBattleNet.Core.BattleField.CreateEmpty C# (CSharp) 메소드

CreateEmpty() 개인적인 메소드

private CreateEmpty ( ) : void
리턴 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;
                }
        }