Advertisement
spartanboy56

Gui Handler

Oct 27th, 2013
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. package Spartsextras.Client.interfaces;
  2.  
  3. import net.minecraft.entity.player.EntityPlayer;
  4. import net.minecraft.world.World;
  5. import cpw.mods.fml.common.network.IGuiHandler;
  6. import cpw.mods.fml.common.network.NetworkRegistry;
  7.  
  8. public class GuiHandler implements IGuiHandler {
  9.  
  10.  
  11. public GuiHandler() {
  12. NetworkRegistry.instance().registerGuiHandler(Spartsextras.instance, this);
  13. }
  14.  
  15.  
  16. @Override
  17. public Object getServerGuiElement(int ID, EntityPlayer player, World world,
  18. int x, int y, int z) {
  19. // TODO Auto-generated method stub
  20. return null;
  21. }
  22.  
  23. @Override
  24. public Object getClientGuiElement(int ID, EntityPlayer player, World world,
  25. int x, int y, int z) {
  26. // TODO Auto-generated method stub
  27. return null;
  28. }
  29.  
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement