BloodMagic/BM_src/forestry/api/arboriculture/IAlleleGrowth.java

13 lines
228 B
Java
Raw Normal View History

package forestry.api.arboriculture;
import forestry.api.genetics.IAllele;
/**
* Simple allele encapsulating an {@link IGrowthProvider}.
*/
public interface IAlleleGrowth extends IAllele {
IGrowthProvider getProvider();
}