18 lines
382 B
Java
18 lines
382 B
Java
package net.minecraftforge.event.entity;
|
|
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.world.World;
|
|
import net.minecraftforge.event.Cancelable;
|
|
|
|
@Cancelable
|
|
public class EntityJoinWorldEvent extends EntityEvent
|
|
{
|
|
|
|
public final World world;
|
|
|
|
public EntityJoinWorldEvent(Entity entity, World world)
|
|
{
|
|
super(entity);
|
|
this.world = world;
|
|
}
|
|
}
|