public static BulletPoolManager GetInstance()
        {
            if (m_instance == null)
            {
                m_instance = new BulletPoolManager();
                Debug.Log("Singleton instance created");
            }

            return(m_instance);
        }