Applied-Energistics-2-tiler.../integration/modules/helpers/FMPPacketEvent.java
2014-04-10 14:52:17 -05:00

15 lines
305 B
Java

package appeng.integration.modules.helpers;
import cpw.mods.fml.common.eventhandler.Event;
import net.minecraft.entity.player.EntityPlayerMP;
public class FMPPacketEvent extends Event
{
public final EntityPlayerMP sender;
public FMPPacketEvent(EntityPlayerMP sender) {
this.sender = sender;
}
}