OSDN Git Service

パッケージ変更
[chemicraft/ChemiCraftNext.git] / src / asia / tcrs / ccnp / chemicraftnext / base / system / CommonProxy.java
1 package asia.tcrs.ccnp.chemicraftnext.base.system;\r
2 \r
3 import net.minecraft.entity.player.EntityPlayer;\r
4 import net.minecraft.world.World;\r
5 import cpw.mods.fml.common.network.IGuiHandler;\r
6 \r
7 /**\r
8  * 共通のプロキシを設定するクラスです\r
9  * @author mozipi,ponkotate\r
10  */\r
11 public class CommonProxy  implements IGuiHandler {\r
12         public void registerTextures() {\r
13 \r
14         }\r
15 \r
16         public void registerRenderInformation() {\r
17         }\r
18 \r
19         @Override\r
20         public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) {\r
21                 return null;\r
22         }\r
23 \r
24         @Override\r
25         public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) {\r
26                 return null;\r
27         }\r
28 }\r