2014-04-10 21:52:17 +02:00
|
|
|
package appeng.integration.modules.helpers;
|
2014-02-15 07:40:02 +01:00
|
|
|
|
2014-04-10 21:52:17 +02:00
|
|
|
import cpw.mods.fml.common.eventhandler.Event;
|
2014-02-15 07:40:02 +01:00
|
|
|
import net.minecraft.entity.player.EntityPlayerMP;
|
|
|
|
|
|
|
|
public class FMPPacketEvent extends Event
|
|
|
|
{
|
|
|
|
|
|
|
|
public final EntityPlayerMP sender;
|
|
|
|
|
|
|
|
public FMPPacketEvent(EntityPlayerMP sender) {
|
|
|
|
this.sender = sender;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|