Beispiel #1
0
        static void Main(string[] args)
        {
            Human jim = new Human();

            jim.Custom("jim", 4, 5, 5, 125);
            Human bob = new Human();

            jim.Attack(jim, bob);
            Console.WriteLine(bob.health);
        }