public EquipmentSlot(EItemSlot pSlot, Item pItem) { slot = pSlot; item = pItem; }
public EquipmentSlot(EItemSlot pSlot) { slot = pSlot; item = null; }
public Equipable(List <EEffect> pEffects, EItemSlot pSlot, int pDurability) { effects = pEffects; slot = pSlot; _durability = pDurability; }