BalloonsPop.LogicProvider.LogicProvider.LetBalloonsFall C# (CSharp) Метод

LetBalloonsFall() публичный Метод

Moves all non-popped balloons vertically to the bottom of the array, effectively simulating gravity.
public LetBalloonsFall ( IBalloon field ) : void
field IBalloon Array representation of the game field.
Результат void
        public void LetBalloonsFall(IBalloon[,] field)
        {
            this.balloonPopper.LetBalloonsFall(field);
        }