Beispiel #1
0
        public void AttackTest()
        {
            Unit elf = new Elf();
            Unit orc = new Orc();

            elf.Attack(orc);
            Assert.AreEqual(184, orc.GetHealth());
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            Elf   elf1  = new Elf();
            Elf   elf2  = new Elf();
            Orc   orc   = new Orc();
            Human human = new Human();

            Console.WriteLine($"Elf1 hp = {elf1.HP}");
            Console.WriteLine($"Elf2 hp = {elf2.HP}");
            elf1.Attack(elf2);
            Console.WriteLine($"Elf1 hp = {elf1.HP}");
            Console.WriteLine($"Elf2 hp = {elf2.HP}");

            Game.Fight(elf1, orc);
            Game.Fight(elf2, human);
            Console.ReadLine();
        }