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