Example #1
0
        private void Heal()
        {
            Hero.ShowPotions();

            var index = Convert.ToInt32(Console.ReadLine()) - 1;

            Hero.DrinkPotion(index);
        }