40 lines
706 B
Java
40 lines
706 B
Java
package org.bukkit.event.vehicle;
|
|
|
|
import org.bukkit.Location;
|
|
import org.bukkit.entity.Vehicle;
|
|
|
|
/**
|
|
* Raised when a vehicle moves.
|
|
*
|
|
* @author sk89q
|
|
*/
|
|
public class VehicleMoveEvent extends VehicleEvent {
|
|
private Location from;
|
|
private Location to;
|
|
|
|
public VehicleMoveEvent(Vehicle vehicle, Location from, Location to) {
|
|
super(Type.VEHICLE_MOVE, vehicle);
|
|
|
|
this.from = from;
|
|
this.to = to;
|
|
}
|
|
|
|
/**
|
|
* Get the previous position.
|
|
*
|
|
* @return
|
|
*/
|
|
public Location getFrom() {
|
|
return from;
|
|
}
|
|
|
|
/**
|
|
* Get the next position.
|
|
*
|
|
* @return
|
|
*/
|
|
public Location getTo() {
|
|
return to;
|
|
}
|
|
}
|