Esempio n. 1
0
    public float GetHardCCScore(List <ChampionData> champs, out int count)
    {
        int hardCCCount = 0;

        for (int i = 0; i < champs.Count; i++)
        {
            if (champs[i] != null && champs[i].m_IsHardCC)
            {
                hardCCCount++;
            }
        }

        count = hardCCCount;

        return(m_ScoreData.GetHardCCScore(hardCCCount));
    }