예제 #1
1
  @EventHandler
  public void init(FMLInitializationEvent event) {
    proxy.init();
    BUInit.init();

    NetworkRegistry.INSTANCE.registerGuiHandler(this, new GuiHandler());
  }
예제 #2
0
 @EventHandler
 public void postInit(FMLPostInitializationEvent evt) {
   proxy.postInit();
   BUInit.postInit();
 }
예제 #3
0
 @EventHandler
 public void preInit(FMLPreInitializationEvent event) {
   proxy.preInit();
   Config.loadConfig(event);
   BUInit.preInit();
 }