GR.Gambling.Blackjack.CmdTester.TakeInsurance C# (CSharp) Method

TakeInsurance() public method

public TakeInsurance ( Game game ) : bool
game Game
return bool
        public override bool TakeInsurance(Game game)
        {
            Console.WriteLine("Insurance offered, take?");
            string input = Console.ReadLine();

            if (input.StartsWith("y"))
                return true;

            return false;
        }