ARKBreedingStats.Form1.buttonRecalculateTops_Click C# (CSharp) Method

buttonRecalculateTops_Click() private method

private buttonRecalculateTops_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void buttonRecalculateTops_Click(object sender, EventArgs e)
        {
            for (int s = 0; s < 8; s++)
                considerStatHighlight[s] = checkedListBoxConsiderStatTop.GetItemChecked(s);
            // recalculate topstats
            calculateTopStats(creatureCollection.creatures);
            filterLib();
        }
Form1