OSDN Git Service

3608d31f7ab4858240b827f80370e5da8c8c416e
[chemicraft/chemicraft.git] / common / chemicraft / CommonProxy.java
1 package chemicraft;
2
3 import net.minecraft.src.EntityPlayer;
4 import net.minecraft.src.World;
5 import cpw.mods.fml.common.network.IGuiHandler;
6
7 public class CommonProxy implements IGuiHandler
8 {
9
10         public void registerRenderInformation()
11         {
12
13         }
14
15         @Override
16         public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
17         {
18                 return null;
19         }
20
21         @Override
22         public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
23         {
24                 return null;
25         }
26
27         public World getClientWorld()
28         {
29                 return null;
30         }
31 }