Example #1
0
 private static bool GetIsHeavyWeapon(int itemType)
 {
     if (HeavyWeapons.Contains(itemType))
     {
         return(true);
     }
     return(false);
 }