diff options
| author | bspkrs <bspkrs@gmail.com> | 2013-12-15 23:17:46 -0500 |
|---|---|---|
| committer | bspkrs <bspkrs@gmail.com> | 2013-12-15 23:17:46 -0500 |
| commit | 1f718427162fa59a22c08a32e68e133fb411aa37 (patch) | |
| tree | e4339d0e1e1b80b1f7a8bb2159e8caafe32c19e6 /common/darkknight/jewelrycraft/CommonProxy.java | |
| parent | cd270875b6b9b5f26e444a0e683fefa3495e2784 (diff) | |
moved renderer registry to ClientProxy.java
Diffstat (limited to 'common/darkknight/jewelrycraft/CommonProxy.java')
| -rw-r--r-- | common/darkknight/jewelrycraft/CommonProxy.java | 22 |
1 files changed, 4 insertions, 18 deletions
diff --git a/common/darkknight/jewelrycraft/CommonProxy.java b/common/darkknight/jewelrycraft/CommonProxy.java index 28ca770..923828a 100644 --- a/common/darkknight/jewelrycraft/CommonProxy.java +++ b/common/darkknight/jewelrycraft/CommonProxy.java @@ -1,24 +1,10 @@ package darkknight.jewelrycraft; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.world.World; -import cpw.mods.fml.common.network.IGuiHandler; -public class CommonProxy implements IGuiHandler +public class CommonProxy { - - @Override - public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) - { - // TODO Auto-generated method stub - return null; - } - - @Override - public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) - { - // TODO Auto-generated method stub - return null; + public void registerRenderers() + { + } - } |
