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

13 lines
225 B
Java

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