Example #1
0
 public void VerifyEquip()
 {
     if (!Inventory.CheckExistItem(Equip.RightHand))
     {
         Equip.RightHand = null;
     }
     if (!Inventory.CheckExistItem(Equip.LeftHand))
     {
         Equip.LeftHand = null;
     }
     if (!Inventory.CheckExistItem(Equip.Armor))
     {
         Equip.Armor = null;
     }
 }