Applied-Energistics-2-tiler.../integration/modules/helpers/FMPPacketEvent.java

16 lines
305 B
Java
Raw Normal View History

2014-04-10 21:52:17 +02:00
package appeng.integration.modules.helpers;
2014-04-10 21:52:17 +02:00
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;
}
}