/******************************************************************************* * Copyright 2011-2014 SirSengir * * This work (the API) is licensed under the "MIT" License, see LICENSE.txt for details. ******************************************************************************/ package forestry.api.genetics; import java.util.EnumSet; import net.minecraftforge.common.EnumPlantType; public interface IAllelePlantType extends IAllele { public EnumSet<EnumPlantType> getPlantTypes(); }