RovkirHexus

CommonProxy.java

May 9th, 2016
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.50 KB | None | 0 0
  1. package com.HexianMods.HexianOres.proxy;
  2.  
  3. import com.HexianMods.HexianOres.HexianOres;
  4. import com.HexianMods.HexianOres.network.HexianOresGUIHandler;
  5.  
  6. import net.minecraftforge.fml.common.event.FMLInitializationEvent;
  7. import net.minecraftforge.fml.common.network.NetworkRegistry;
  8.  
  9. public class CommonProxy {
  10.     public void registerRenders() {
  11.     }
  12.    
  13.     public void init(FMLInitializationEvent e){
  14.         NetworkRegistry.INSTANCE.registerGuiHandler(HexianOres.instance, new HexianOresGUIHandler());
  15.     }
  16. }
Add Comment
Please, Sign In to add comment