Example #1
0
 /**
  * Do your mod setup. Build whatever data structures you care about. Register recipes, send
  * FMLInterModComms messages to other mods.
  */
 public void init() {
   // minecraftbyexample.mbe70_configuration.StartupCommon.initCommon();
   ItemDictionary.registerItem();
 }
Example #2
0
 /**
  * Run before anything else. Read your config, create blocks, items, etc, and register them with
  * the GameRegistry
  */
 public void preInit() {
   // read config first
   // minecraftbyexample.mbe70_configuration.StartupCommon.preInitCommon();
   ItemDictionary.initializeItem();
 }