Advertisement
AyrA

MC Mod; CommonProxy.java

Jan 13th, 2013
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.56 KB | None | 0 0
  1. package ayra.testMod;
  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.  
  10.     @Override
  11.     public Object getServerGuiElement(int ID, EntityPlayer player, World world,
  12.             int x, int y, int z) {
  13.         // TODO Auto-generated method stub
  14.         return null;
  15.     }
  16.  
  17.     @Override
  18.     public Object getClientGuiElement(int ID, EntityPlayer player, World world,
  19.             int x, int y, int z) {
  20.         // TODO Auto-generated method stub
  21.         return null;
  22.     }
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement