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

13 lines
225 B
Java
Raw Normal View History

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