Advertisement
WitherDoggie

Common Proxy

May 22nd, 2016
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.61 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.WoodWall;
  7. import com.wither.withermod.blocks.ModBlock.HarvestLevelEnum;
  8. import com.wither.withermod.blocks.ModBlock.HarvestToolEnum;
  9. import com.wither.withermod.items.ItemRegistry;
  10. import com.wither.withermod.items.ModItem;
  11. import com.wither.withermod.items.RegisterRender;
  12. import com.wither.withermod.utils.CraftingRegistry;
  13. import com.wither.withermod.utils.SmeltingRegistry;
  14.  
  15. import net.minecraft.block.Block;
  16. import net.minecraft.block.material.Material;
  17. import net.minecraft.client.resources.model.ModelBakery;
  18. import net.minecraft.creativetab.CreativeTabs;
  19. import net.minecraft.init.Blocks;
  20. import net.minecraft.init.Items;
  21. import net.minecraft.item.Item;
  22. import net.minecraft.item.ItemFood;
  23. import net.minecraft.item.ItemStack;
  24. import net.minecraft.util.ResourceLocation;
  25. import net.minecraftforge.fml.common.event.FMLInitializationEvent;
  26. import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
  27. import net.minecraftforge.fml.common.registry.GameRegistry;
  28. import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
  29.  
  30.  
  31. public class CommonProxy {
  32.  
  33.     public void PreInit(FMLPreInitializationEvent e){
  34.        
  35.     }
  36.  
  37.     public void Init(FMLInitializationEvent e){
  38.        
  39.    
  40.        
  41.        
  42.         ItemRegistry.registerItems();
  43.    
  44.         BlockRegistry.setDrops();
  45.        
  46.         CraftingRegistry.addRecipie();
  47.         SmeltingRegistry.addSmelting();
  48.     }
  49.  
  50.     public void PostInit(FMLPostInitializationEvent e){
  51.        
  52.     }
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement