use of forestry.apiculture.genetics.alleles.AlleleFlowers in project ForestryMC by ForestryMC.
the class AlleleFactory method createFlowers.
@Override
public IAlleleFlowers createFlowers(String modId, String category, String valueName, IFlowerProvider value, boolean isDominant, IChromosomeType... types) {
IAlleleFlowers alleleFlowers = new AlleleFlowers(modId, category, valueName, value, isDominant);
AlleleManager.alleleRegistry.registerAllele(alleleFlowers, types);
return alleleFlowers;
}
Aggregations