BalloonsPop.LogicProvider.LogicProvider.PopBalloons C# (CSharp) Method

PopBalloons() public method

Provides popping logic based on field, row and column.
public PopBalloons ( IBalloon field, int row, int column ) : void
field IBalloon Array representation of the game field.
row int The number of rows in the field.
column int The number of columns in the field.
return void
        public void PopBalloons(IBalloon[,] field, int row, int column)
        {
            this.balloonPopper.PopBalloons(field, row, column);
        }