vp_FPSShooter.PreventFiring C# (CSharp) Method

PreventFiring() public method

public PreventFiring ( float seconds ) : void
seconds float
return void
    public void PreventFiring(float seconds)
    {
        m_NextAllowedFireTime = Time.time + seconds;
    }