MightyDanp

Untitled

Jul 14th, 2015
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. package com.mightydanp.eot.core.handler;
  2.  
  3. import net.minecraft.entity.player.EntityPlayer;
  4. import cpw.mods.fml.common.network.simpleimpl.IMessage;
  5. import cpw.mods.fml.common.network.simpleimpl.MessageContext;
  6.  
  7. public abstract class AbstractClientMessageHandler<T extends IMessage> extends AbstractMessageHandler<T> {
  8.  
  9. public final IMessage handleServerMessage(EntityPlayer player, T message, MessageContext ctx) {
  10. return null;
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment