2012-08-07 23:54:14 +00:00
|
|
|
package net.minecraftforge.event.entity.minecart;
|
|
|
|
|
2012-12-13 05:58:35 +00:00
|
|
|
import net.minecraft.entity.item.EntityMinecart;
|
2012-08-07 23:54:14 +00:00
|
|
|
|
|
|
|
public class MinecartUpdateEvent extends MinecartEvent
|
|
|
|
{
|
|
|
|
public final float x;
|
|
|
|
public final float y;
|
|
|
|
public final float z;
|
|
|
|
|
|
|
|
public MinecartUpdateEvent(EntityMinecart minecart, float x, float y, float z)
|
|
|
|
{
|
|
|
|
super(minecart);
|
|
|
|
this.x = x;
|
|
|
|
this.y = y;
|
|
|
|
this.z = z;
|
|
|
|
}
|
|
|
|
}
|