Advertisement
WitherDoggie

Common Proxy

May 14th, 2016
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.42 KB | None | 0 0
  1. package com.wither.withermod;
  2.  
  3. import com.wither.withermod.blocks.BlockRegistry;
  4. import com.wither.withermod.blocks.ModBlock;
  5. import com.wither.withermod.blocks.ModPane;
  6. import com.wither.withermod.blocks.ModBlock.HarvestLevelEnum;
  7. import com.wither.withermod.blocks.ModBlock.HarvestToolEnum;
  8. import com.wither.withermod.items.ItemRegistry;
  9. import com.wither.withermod.items.ModItem;
  10. import com.wither.withermod.items.RegisterRender;
  11. import com.wither.withermod.utils.CraftingRegistry;
  12. import com.wither.withermod.utils.SmeltingRegistry;
  13.  
  14. import net.minecraft.block.material.Material;
  15. import net.minecraft.creativetab.CreativeTabs;
  16. import net.minecraft.init.Blocks;
  17. import net.minecraft.init.Items;
  18. import net.minecraft.item.ItemFood;
  19. import net.minecraft.item.ItemStack;
  20. import net.minecraftforge.fml.common.event.FMLInitializationEvent;
  21. import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
  22. import net.minecraftforge.fml.common.registry.GameRegistry;
  23. import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
  24.  
  25.  
  26. public class CommonProxy {
  27.  
  28.     public void PreInit(FMLPreInitializationEvent e){
  29.        
  30.     }
  31.  
  32.     public void Init(FMLInitializationEvent e){
  33.        
  34.        
  35.         ItemRegistry.registerItems();
  36.        
  37.         BlockRegistry.registerBlocks();
  38.         BlockRegistry.setDrops();
  39.        
  40.         CraftingRegistry.addRecipie();
  41.         SmeltingRegistry.addSmelting();
  42.     }
  43.  
  44.     public void PostInit(FMLPostInitializationEvent e){
  45.        
  46.     }
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement