mirror of
https://github.com/Ellpeck/PrettyPipes.git
synced 2024-11-05 13:29:10 +01:00
18 lines
498 B
Java
18 lines
498 B
Java
|
package de.ellpeck.prettypipes;
|
||
|
|
||
|
import net.minecraftforge.eventbus.api.IEventBus;
|
||
|
import net.minecraftforge.fml.common.Mod;
|
||
|
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;
|
||
|
|
||
|
@Mod(PrettyPipes.ID)
|
||
|
public final class PrettyPipes {
|
||
|
|
||
|
public static final String ID = "prettypipes";
|
||
|
|
||
|
public PrettyPipes() {
|
||
|
IEventBus bus = FMLJavaModLoadingContext.get().getModEventBus();
|
||
|
bus.addListener(Registry::setup);
|
||
|
bus.addListener(Registry::setupClient);
|
||
|
}
|
||
|
}
|