Beispiel #1
0
        static void Main(string[] args)
        {
            Human human1 = new Human("June");
            Human human2 = new Human("Jane");

            human1.Attack(human2);
            human2.Heal();
            System.Console.WriteLine();
        }