summaryrefslogtreecommitdiff
path: root/common/darkknight/jewelrycraft/client
diff options
context:
space:
mode:
Diffstat (limited to 'common/darkknight/jewelrycraft/client')
-rw-r--r--common/darkknight/jewelrycraft/client/ClientProxy.java8
-rw-r--r--common/darkknight/jewelrycraft/client/JewelryCraftClient.java16
2 files changed, 24 insertions, 0 deletions
diff --git a/common/darkknight/jewelrycraft/client/ClientProxy.java b/common/darkknight/jewelrycraft/client/ClientProxy.java
new file mode 100644
index 0000000..e280402
--- /dev/null
+++ b/common/darkknight/jewelrycraft/client/ClientProxy.java
@@ -0,0 +1,8 @@
+package darkknight.jewelrycraft.client;
+
+import darkknight.jewelrycraft.CommonProxy;
+
+public class ClientProxy extends CommonProxy
+{
+
+}
diff --git a/common/darkknight/jewelrycraft/client/JewelryCraftClient.java b/common/darkknight/jewelrycraft/client/JewelryCraftClient.java
new file mode 100644
index 0000000..734e9d5
--- /dev/null
+++ b/common/darkknight/jewelrycraft/client/JewelryCraftClient.java
@@ -0,0 +1,16 @@
+package darkknight.jewelrycraft.client;
+
+import net.minecraft.network.INetworkManager;
+import net.minecraft.network.packet.Packet250CustomPayload;
+import cpw.mods.fml.common.network.IPacketHandler;
+import cpw.mods.fml.common.network.Player;
+
+public class JewelryCraftClient implements IPacketHandler
+{
+ @Override
+ public void onPacketData(INetworkManager manager, Packet250CustomPayload packet, Player player)
+ {
+ // TODO Auto-generated method stub
+
+ }
+}