private IEnumerator WaitAndUpdateRatio()
    {
        yield return(new WaitForSeconds(0.2f));

        if (RatioUpdateEvent != null)
        {
            RatioUpdateEvent(m_Gun.GetRatio());
        }
    }