示例#1
0
    private void DestroyHUD(int a_Index)
    {
        if (a_Index >= m_lHUD.Count)
        {
            return;
        }

        GHUD gHUD = m_lHUD[a_Index];

        gHUD.OnDestroyObj();
        m_lHUD.RemoveAt(a_Index);
    }