mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 00:29:08 +01:00
263c0eea1e
-Updated Bugs
18 lines
489 B
Java
18 lines
489 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());
|
|
Util.registerEvent(new EntityLivingEvent());
|
|
}
|
|
|
|
}
|