BloodMagic/BM_src/forestry/api/genetics/IAlleleBoolean.java

12 lines
196 B
Java
Raw Normal View History

package forestry.api.genetics;
/**
* Simple interface to allow adding additional alleles containing float values.
*/
public interface IAlleleBoolean extends IAllele {
boolean getValue();
}