Advertisement
LamboSV

CommonProxy

Mar 31st, 2013
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.65 KB | None | 0 0
  1. package CyborgCreeperPackage;
  2.  
  3. import cpw.mods.fml.common.network.IGuiHandler;
  4. import cpw.mods.fml.common.registry.EntityRegistry;
  5. import net.minecraft.entity.Entity;
  6. import net.minecraft.entity.player.EntityPlayer;
  7. import net.minecraft.src.*;
  8. import net.minecraft.world.World;
  9.  
  10. public class CommonProxy implements IGuiHandler{
  11.  
  12.  
  13. public static void registerRenderInformation()
  14. {
  15. }
  16.    
  17.     public Object getServerGuiElement(int ID, EntityPlayer player, World world,
  18.             int x, int y, int z) {
  19.    
  20.         return null;
  21.     }
  22.  
  23.    
  24.     public Object getClientGuiElement(int ID, EntityPlayer player, World world,
  25.             int x, int y, int z) {
  26.        
  27.         return null;
  28.     }
  29.  
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement