Implemented vehicle hooks (some changes will still be made).

This commit is contained in:
sk89q
2011-01-03 16:52:44 +08:00
committed by Dinner Bone
parent 0a418f8fb9
commit 30f7da4d0b
12 changed files with 348 additions and 4 deletions

View File

@@ -0,0 +1,40 @@
package org.bukkit.event.vehicle;
import org.bukkit.Location;
import org.bukkit.Vehicle;
/**
* Raised when a vehicle moves.
*
* @author sk89q
*/
public class VehicleMoveEvent extends VehicleEvent {
private Location from;
private Location to;
public VehicleMoveEvent(Type type, Vehicle vehicle,
Location from, Location to) {
super(type, 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;
}
}