2012-09-11 22:27:34 +00:00
|
|
|
package net.minecraftforge.event.entity;
|
|
|
|
|
2012-12-13 05:58:35 +00:00
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
import net.minecraft.world.World;
|
2012-09-12 00:34:37 +00:00
|
|
|
import net.minecraftforge.event.Cancelable;
|
2012-09-11 22:27:34 +00:00
|
|
|
|
2012-09-12 00:34:37 +00:00
|
|
|
@Cancelable
|
2012-09-11 22:27:34 +00:00
|
|
|
public class EntityJoinWorldEvent extends EntityEvent
|
|
|
|
{
|
|
|
|
|
|
|
|
public final World world;
|
|
|
|
|
|
|
|
public EntityJoinWorldEvent(Entity entity, World world)
|
|
|
|
{
|
|
|
|
super(entity);
|
|
|
|
this.world = world;
|
|
|
|
}
|
|
|
|
}
|