BalloonsPop.LogicProvider.LogicProvider.LetBalloonsFall C# (CSharp) Méthode

LetBalloonsFall() public méthode

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.
Résultat void
        public void LetBalloonsFall(IBalloon[,] field)
        {
            this.balloonPopper.LetBalloonsFall(field);
        }