コード例 #1
0
 public void SetReservedBullet(EWeaponSlotType slot, int count)
 {
     if (slot.IsSlotWithBullet())
     {
         ModeController.SetReservedBullet(this, slot, count);
     }
 }
コード例 #2
0
        public void SetReservedBullet(int count)
        {
            var currSlot = HeldSlotType;

            if (currSlot.IsSlotWithBullet())
            {
                ModeController.SetReservedBullet(this, HeldSlotType, count);
            }
        }
コード例 #3
0
 public int SetReservedBullet(EBulletCaliber caliber, int count)
 {
     return(ModeController.SetReservedBullet(this, caliber, count));
 }