mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-04 16:19:10 +01:00
22 lines
724 B
Java
22 lines
724 B
Java
package ellpeck.actuallyadditions.event;
|
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
|
import ellpeck.actuallyadditions.util.Util;
|
|
import net.minecraftforge.common.MinecraftForge;
|
|
|
|
public class InitEvents{
|
|
|
|
public static void init(){
|
|
ModUtil.LOGGER.info("Initializing Events...");
|
|
|
|
Util.registerEvent(new SmeltEvent());
|
|
Util.registerEvent(new CraftEvent());
|
|
Util.registerEvent(new LivingDropEvent());
|
|
Util.registerEvent(new PickupEvent());
|
|
Util.registerEvent(new TooltipEvent());
|
|
Util.registerEvent(new EntityLivingEvent());
|
|
Util.registerEvent(new BucketFillEvent());
|
|
MinecraftForge.TERRAIN_GEN_BUS.register(new WorldDecorationEvent());
|
|
}
|
|
|
|
}
|