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

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

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.
Результат void
        public void PopBalloons(IBalloon[,] field, int row, int column)
        {
            this.balloonPopper.PopBalloons(field, row, column);
        }