ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/event/InitEvents.java

16 lines
341 B
Java
Raw Normal View History

2015-03-07 12:51:28 +01:00
package ellpeck.actuallyadditions.event;
2015-03-07 12:51:28 +01:00
import ellpeck.actuallyadditions.util.Util;
public class InitEvents{
public static void init(){
Util.logInfo("Initializing Events...");
Util.registerEvent(new SmeltEvent());
Util.registerEvent(new CraftEvent());
Util.registerEvent(new KilledEvent());
}
}