BloodMagic/src/main/java/WayofTime/bloodmagic/api/IBloodMagicPlugin.java

16 lines
496 B
Java
Raw Normal View History

package WayofTime.bloodmagic.api;
2018-02-11 00:39:04 -08:00
/**
* The main class to implement to create a Blood Magic plugin. Everything communicated between a mod and Blood Magic is through this class.
* IBloodMagicPlugins must have the {@link BloodMagicPlugin} annotation to get loaded by Blood Magic.
*/
public interface IBloodMagicPlugin {
2018-02-11 00:39:04 -08:00
/**
* Register mod content with the API
*
* @param api The active instance of the {@link IBloodMagicAPI}
*/
void register(IBloodMagicAPI api);
}