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

12 lines
196 B
Java

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