summaryrefslogtreecommitdiff
path: root/TF2 Crates/src/main/java/tlhpoeCore/ServerProxyT.java
diff options
context:
space:
mode:
authorbculkin2442 <bjculkin@mix.wvu.edu>2018-05-24 15:52:43 -0400
committerbculkin2442 <bjculkin@mix.wvu.edu>2018-05-24 15:52:43 -0400
commita11c98c6cad501e081837ec8fa2e323edaeb1ca3 (patch)
treeab97a3e81bfa3eec2ff530ec55ff4a69e48f49e3 /TF2 Crates/src/main/java/tlhpoeCore/ServerProxyT.java
Initial commitmaster
Diffstat (limited to 'TF2 Crates/src/main/java/tlhpoeCore/ServerProxyT.java')
-rwxr-xr-xTF2 Crates/src/main/java/tlhpoeCore/ServerProxyT.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/TF2 Crates/src/main/java/tlhpoeCore/ServerProxyT.java b/TF2 Crates/src/main/java/tlhpoeCore/ServerProxyT.java
new file mode 100755
index 0000000..230d0de
--- /dev/null
+++ b/TF2 Crates/src/main/java/tlhpoeCore/ServerProxyT.java
@@ -0,0 +1,15 @@
+package tlhpoeCore;
+
+import cpw.mods.fml.relauncher.Side;
+import tlhpoeCore.network.MessagePlaySound;
+
+public class ServerProxyT {
+ public void doServer() {
+ TLHPoE.networkChannel.registerMessage(
+ MessagePlaySound.Handler.class, MessagePlaySound.class,
+ TLHPoE.getNextMessageID(), Side.CLIENT);
+ }
+
+ public void doClient() {
+ }
+} \ No newline at end of file