/**
  * Do your mod setup. Build whatever data structures you care about. Register recipes, send
  * FMLInterModComms messages to other mods.
  */
 @Override
 public void load() {
   super.load();
 }
 /** Handle interaction with other mods, complete your setup based on this. */
 @Override
 public void postInit() {
   super.postInit();
 }
 /**
  * Run before anything else. Read your config, create blocks, items, etc, and register them with
  * the GameRegistry
  */
 @Override
 public void preInit() {
   super.preInit();
 }