Example #1
0
    public static GeneticItem merge(GeneticItem a, GeneticItem b)
    {
        // Take some aspects of a and b, and melds them into a third item

        GeneticItem result = new GeneticItem();

        throw new System.NotImplementedException();
    }
 public abstract GeneticItem GenerateOffspring(GeneticItem parent2, double mutationChance);