public bool HasBoots(Inventory.Boots b)
 {
     return(Shared.Game.Instance.Inventory.HasBoots(b));
 }
 public void TakeBoots(Inventory.Boots b)
 {
     Shared.Game.Instance.Inventory.TakeBoots(b);
     Sound().Play(Shared.Sound.TakeItem);
 }