ARKBreedingStats.Form1.creatureBoxListView_FindParents C# (CSharp) Метод

creatureBoxListView_FindParents() приватный Метод

this function is called if the user enters the settings of a creature. Finds the possible parents and saves them in the creatureBox
private creatureBoxListView_FindParents ( object sender, Creature creature ) : void
sender object
creature Creature
Результат void
        private void creatureBoxListView_FindParents(object sender, Creature creature)
        {
            List<Creature>[] parents = findParents(creature);
            creatureBoxListView.parentListSimilarity = findParentSimilarities(parents, creature);
            creatureBoxListView.parentList = parents;
        }
Form1