Exemple #1
0
        static void Main(string[] args)
        {
            Harcos h1 = new Harcos("Yoda", 100, 50);
            Harcos h2 = new Harcos("Dookoo", 100, 30);

            while (!h1.Harcol(h2))
            {
                h1.Harcol(h2);
                Console.WriteLine(h1.ToString());
                Console.WriteLine(h2.ToString());
            }



            Console.ReadKey();
        }