private static void Shoot()
        {
            Console.Write("What... is your choice? Enter (r/p/s) or \"score\" to see the score. ");
            switch (Console.ReadLine().ToLower())
            {
            case "r":
                Fight((int)Roshambo.Rock, theAdversary.ThrowMove((int)Roshambo.Rock));
                break;

            case "p":
                Fight((int)Roshambo.Paper, theAdversary.ThrowMove((int)Roshambo.Paper));
                break;

            case "s":
                Fight((int)Roshambo.Scissors, theAdversary.ThrowMove((int)Roshambo.Scissors));
                break;

            case "score":
                Console.WriteLine("You want to see the score? You care about seeing the...");
                System.Threading.Thread.Sleep(1000);
                Console.Write(".");
                System.Threading.Thread.Sleep(1000);
                Console.Write(".");
                System.Threading.Thread.Sleep(1000);
                Console.Write(".");
                System.Threading.Thread.Sleep(1000);
                Console.Write(".");
                System.Threading.Thread.Sleep(1000);
                Console.WriteLine("*sigh* Very well, here's the score....");
                PrintScore();
                break;

            default:
                Console.WriteLine($"You call that an input?! Try again, {PlayerName}, you incompetant nin-com-poop!");
                break;
            }
        }