Beispiel #1
0
        public void Test_CowDead()
        {
            var cow = new Cow(100, 100);

            Entity = new AttackCollider(110, 110, 32, 32, cow, 10);
            cow.ConflictWith(Entity);
            Assert.AreEqual(false, cow.IsAlive);
        }