// Unequip
 public void Unequip(Equipment equipment)
 {
     // Remove from Equipment Panel
     if (!inventory.Full() && equipmentPanel.RemoveEquipment(equipment))
     {
         // - then Add the Item back to the Inventory (if there are still rooms)
         inventory.AddItem(equipment);
     }
 }