Interface ServerLocationCreator
-
- All Superinterfaces:
LocationCreator<ServerWorld,ServerLocation>
- All Known Subinterfaces:
ServerWorld
public interface ServerLocationCreator extends LocationCreator<ServerWorld,ServerLocation>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
ServerLocationCreator.Factory
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default LocatableBlock
locatableBlock(int x, int y, int z)
Gets aLocatableBlock
for the desiredx, y, z
coordinates.default LocatableBlock
locatableBlock(Vector3i position)
Gets aLocatableBlock
for the desiredVector3i
position.
-
-
-
Method Detail
-
locatableBlock
default LocatableBlock locatableBlock(Vector3i position)
Gets aLocatableBlock
for the desiredVector3i
position.- Parameters:
position
- The position to get the locatable block- Returns:
- The locatable block
-
locatableBlock
default LocatableBlock locatableBlock(int x, int y, int z)
Gets aLocatableBlock
for the desiredx, y, z
coordinates.- Parameters:
x
- The x positiony
- The y positionz
- The z position- Returns:
- The locatable block
-
-