public void PlayerPickUpWand()
 {
     Assert.IsTrue(testWand.hitbox.Intersects(testPlayer.hitbox));
     testWand.Collision(testPlayer);
     Assert.IsTrue(testPlayer.weapon is Wand);
 }