예제 #1
0
 private bool onChangeComputerPlayCommand(CommandBase command)
 {
     if (command is ChangeComputerPlayCommand)
     {
         RoleMgr.ChangeComputerToPlay();
         return(true);
     }
     else
     {
         Console.WriteLine("command is not ChangeComputerPlayCommand");
         return(false);
     }
 }