CardsAgainstIRC3.Game.States.Base.ResumeCommand C# (CSharp) Method

ResumeCommand() private method

private ResumeCommand ( CommandContext context, IEnumerable arguments ) : void
context CommandContext
arguments IEnumerable
return void
        public void ResumeCommand(CommandContext context, IEnumerable<string> arguments)
        {
            var player = Manager.Resolve(context.Nick);
            if (player == null)
                return;

            player.CanChooseCards = player.CanVote = true;
        }