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

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

public Execute ( IContext context ) : void
context IContext
Результат void
        public void Execute(IContext context)
        {
            context.HighscoreTable.AddPlayer(new PlayerScore(context.PlayerName, context.Game.UserMovesCount, DateTime.Now));
        }
AddPlayerscoreCommand