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