Example #1
0
 public void SelectResolutionById(int i_Id)
 {
     if (m_ResolutionSelector != null)
     {
         m_ResolutionSelector.SelectItem(i_Id);
     }
 }
    private void SelectAILevel(int i_Id)
    {
        if (m_AILevelSelector == null)
        {
            return;
        }

        m_AILevelSelector.SelectItem(i_Id);
    }
    private void SelectGoldenGoal(int i_Id)
    {
        if (m_GoldenGoalSelector == null)
        {
            return;
        }

        m_GoldenGoalSelector.SelectItem(i_Id);
    }
    private void SelectReferee(int i_Id)
    {
        if (m_RefereeSelector == null)
        {
            return;
        }

        m_RefereeSelector.SelectItem(i_Id);
    }
    private void SelectMatchDuration(int i_Id)
    {
        if (m_MatchDurationSelector == null)
        {
            return;
        }

        m_MatchDurationSelector.SelectItem(i_Id);
    }
    private void SelectGameMode(int i_Id)
    {
        if (m_GameModeSelector == null)
        {
            return;
        }

        m_GameModeSelector.SelectItem(i_Id);
    }