Add support for JustEnoughItems

Will build on as we add more recipe types.
This commit is contained in:
Nick 2015-11-28 23:52:06 -08:00
parent 6f96e200d2
commit 91f88b846f
12 changed files with 292 additions and 1 deletions

View file

@ -0,0 +1,17 @@
package WayofTime.bloodmagic.compat;
/**
* Implement on all primary compatibility classes.
*/
public interface ICompatibility {
/**
* Called after the given {@code modid} has been verified as loaded.
*/
void loadCompatibility();
/**
* The {@code modid} of the mod we are adding compatibility for.
*/
String getModId();
}