示例#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();
 }