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