Esempio n. 1
0
 public void UnEquipOffHand()
 {
     this.OffHand = null;
 }
Esempio n. 2
0
 public void ClearInventory()
 {
     this.Bag.Clear();
     this.MainHandWeapon = null;
     this.OffHand = null;
     this.Boots = null;
     this.BodyArmor = null;
     this.Gloves = null;
     this.Helmet = null;
 }
Esempio n. 3
0
 public void EquipOffHand(IOffhand offhand)
 {
     this.OffHand = offhand;
 }