Advertisement
Guest User

Untitled

a guest
May 10th, 2014
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. Main Registry
  2.  
  3. public class MainRegistry {
  4.  
  5.  
  6.  
  7. @SidedProxy(clientSide = "com.james.main.ClientProxy", serverSide = "com.james.main.ServerProxy")
  8. public static ServerProxy proxy;
  9.  
  10.  
  11.  
  12. @EventHandler
  13. public static void preload(FMLPreInitializationEvent PreEvent){
  14. block.mainRegistry();
  15. item.mainRegistry();
  16. GameRegistry.registerWorldGenerator(new WorldGen(), 0);
  17. proxy.registerRenderThings();
  18. CraftingManager.mainRegistry();
  19. }
  20.  
  21.  
  22.  
  23. @EventHandler
  24. public static void load(FMLInitializationEvent Event){
  25.  
  26.  
  27.  
  28. }
  29.  
  30. @EventHandler
  31. public static void PostLoad(FMLPostInitializationEvent PreEvent){
  32.  
  33. }
  34.  
  35.  
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement