示例#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;
 }