ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/event/InitEvents.java
Ellpeck 3649bdd29c -Precision Droppers
-Bugs fixed
2015-05-04 17:26:50 +02:00

18 lines
436 B
Java

package ellpeck.actuallyadditions.event;
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());
Util.registerEvent(new PickupEvent());
Util.registerEvent(new TooltipEvent());
}
}