Bukkit  1.4.7-R1.0
 All Classes Namespaces Files Functions Variables Enumerator Pages
Vehicle.java
Go to the documentation of this file.
1 package org.bukkit.entity;
2 
3 import org.bukkit.util.Vector;
4 
8 public interface Vehicle extends Entity {
9 
15  public Vector getVelocity();
16 
22  public void setVelocity(Vector vel);
23 }