use of com.zundrel.logisticalautomation.common.handler.GuiHandler in project Logistical-Automation by Zundrel.
the class LogisticalAutomation method init.
@Mod.EventHandler
public void init(FMLInitializationEvent event) {
TileRegistry.init();
NetworkRegistry.INSTANCE.registerGuiHandler(instance, new GuiHandler());
networkWrapper = new SimpleNetworkWrapper(ModInfo.MOD_ID);
networkWrapper.registerMessage(MessageButton.class, MessageButton.class, 0, Side.SERVER);
}
Aggregations