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

PauseCommand() private method

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

            UserLeft(player, false);
        }