16 lines
384 B
Java
16 lines
384 B
Java
|
package net.minecraftforge.event.entity.player;
|
||
|
|
||
|
import net.minecraft.src.Entity;
|
||
|
import net.minecraft.src.EntityPlayer;
|
||
|
import net.minecraftforge.event.entity.living.LivingEvent;
|
||
|
|
||
|
public class PlayerEvent extends LivingEvent
|
||
|
{
|
||
|
public final EntityPlayer entityPlayer;
|
||
|
public PlayerEvent(EntityPlayer player)
|
||
|
{
|
||
|
super(player);
|
||
|
entityPlayer = player;
|
||
|
}
|
||
|
}
|