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

11 lines
219 B
Java
Raw Normal View History

package forestry.api.genetics;
/**
* AlleleManager.alleleRegistry can be cast to this type.
*/
public interface ILegacyHandler {
void registerLegacyMapping(int id, String uid);
IAllele getFromLegacyMap(int id);
}