BalloonsPop.Core.Commands.CompositeRestart.CompositeRestart C# (CSharp) Метод

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

Initializes a new instance of the CompositeRestart class.
public CompositeRestart ( ) : System.Collections.Generic
Результат System.Collections.Generic
        public CompositeRestart()
        {
            this.SubCommands = new List<ICommand>()
            {
                new SaveCommand(),
                new PrintHighscoreCommand(),
                new RestartCommand(),
                new PrintFieldCommand()
            };
        }
CompositeRestart