Guest User

Common Proxy

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