Пример #1
0
 public void UnEquipOffHand()
 {
     this.OffHand = null;
 }
Пример #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;
 }
Пример #3
0
 public void EquipOffHand(IOffhand offhand)
 {
     this.OffHand = offhand;
 }