Added World.spawnBoat().

This commit is contained in:
sk89q 2011-01-07 13:59:30 -08:00
parent 5e76ddc41e
commit b671546e92

View File

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