blob: 2ace6d1d53a3e02ea5eafded749d7d8af0dd1b08 [file] [log] [blame] [raw]
package forestry.api.genetics;
/**
* Simple interface to allow adding additional alleles containing float values.
*/
public interface IAlleleFloat extends IAllele {
float getValue();
}