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

18 lines
436 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());
2015-04-19 01:50:02 +02:00
Util.registerEvent(new PickupEvent());
2015-05-04 17:26:50 +02:00
Util.registerEvent(new TooltipEvent());
}
}