18 lines
362 B
Java
18 lines
362 B
Java
![]() |
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();
|
||
|
}
|