コード例 #1
0
ファイル: Inventory.cs プロジェクト: Stanimir-b/Youkai
 public void UnEquipOffHand()
 {
     this.OffHand = null;
 }
コード例 #2
0
ファイル: Inventory.cs プロジェクト: Stanimir-b/Youkai
 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
ファイル: Inventory.cs プロジェクト: Stanimir-b/Youkai
 public void EquipOffHand(IOffhand offhand)
 {
     this.OffHand = offhand;
 }