public override void OnDrag(UnityEngine.EventSystems.PointerEventData ped)
 {
     //Unequip what was in the slot before
     if (Content != null)
     {
         eUI.Unequip(this);
     }
     //And call base to handle UI stuff
     base.OnDrag(ped);
 }