Esempio n. 1
0
 public Item(string name, ItemsEnums.ItemSlot slot, int damage, int defence, int hitPoints)
 {
     this.Name      = name;
     this.Slot      = slot;
     this.Damage    = damage;
     this.Defence   = defence;
     this.HitPoints = hitPoints;
 }
Esempio n. 2
0
 public GearSlot(ItemsEnums.ItemSlot slot, IItem item)
 {
     this.Slot = slot;
     this.Item = item;
 }