add getSpawnLocation() to the World API

This commit is contained in:
FeepingCreature 2011-01-16 07:01:15 +08:00 committed by Dinner Bone
parent dad2a46ba9
commit efd4871672

View File

@ -165,4 +165,8 @@ public interface World {
* @return Id of this world * @return Id of this world
*/ */
public long getId(); public long getId();
/**
* Gets the default spawn location.
*/
public Location getSpawnLocation();
} }