BloodMagic/BM_src/forestry/api/arboriculture/IAlleleGrowth.java
2014-01-25 20:36:28 -05:00

13 lines
228 B
Java

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