示例#1
0
 public void EquipToSecondaryHandSlot(GunWeaponItem item, bool switchSelectedHandSlot = false)
 {
     SecondaryHandSlot = item;
     if (switchSelectedHandSlot)
     {
         SelectedHandSlot = 1;
     }
 }
示例#2
0
 public void EquipToPrimaryHandSlot(GunWeaponItem item, bool switchSelectedHandSlot = false)
 {
     PrimaryHandSlot = item;
     if (switchSelectedHandSlot)
     {
         SelectedHandSlot = 0;
     }
 }