Beispiel #1
0
        static void Main(string[] args)
        {
            Human bob   = new Human("Bob");
            Human billy = new Human("Billy", 4);

            billy.Attack(bob);
            bob.Display();
            billy.Display();
        }