コード例 #1
0
ファイル: Common.cs プロジェクト: artman41/PingPong
        public void HandleCommand(Object sender, string[] args)
        {
            this.run();

            while (true)
            {
                this.commandParsing = new CommandParsing(this.Side);
                commandParsing.ParseMessage(sender, Console.In.ReadLine());
            }
        }