Added World.spawnBoat().

By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
Bukkit/Spigot 2011-01-07 13:59:30 -08:00
parent f6dc158646
commit eb62da78ee

View file

@ -103,4 +103,12 @@ public interface World {
* @return
*/
public PoweredMinecart spawnPoweredMinecart(Location loc);
/**
* Spawn a boat.
*
* @param loc
* @return
*/
public Boat spawnBoat(Location loc);
}