mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 04:49:10 +01:00
12 lines
242 B
Java
12 lines
242 B
Java
package de.ellpeck.naturesaura.reg;
|
|
|
|
public interface IModItem {
|
|
|
|
String getBaseName();
|
|
|
|
//void onPreInit(FMLCommonSetupEvent event);
|
|
|
|
//void onInit(FMLCommonSetupEvent event);
|
|
|
|
//void onPostInit(FMLCommonSetupEvent event);
|
|
}
|