Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.mightydanp.eot.core.handler;
- import net.minecraft.entity.player.EntityPlayer;
- import cpw.mods.fml.common.network.simpleimpl.IMessage;
- import cpw.mods.fml.common.network.simpleimpl.MessageContext;
- public abstract class AbstractClientMessageHandler<T extends IMessage> extends AbstractMessageHandler<T> {
- public final IMessage handleServerMessage(EntityPlayer player, T message, MessageContext ctx) {
- return null;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment