Package org.core.world
Interface Extent
- All Known Subinterfaces:
ChunkExtent
,WorldExtent
public interface Extent
-
Method Summary
Modifier and TypeMethodDescriptiongetAsyncPosition(double x, double y, double z)
Deprecated, for removal: This API element is subject to removal in a future version.getAsyncPosition(int x, int y, int z)
Deprecated, for removal: This API element is subject to removal in a future version.default <N extends Number>
@NotNull ASyncPosition<N>getAsyncPosition(@NotNull Vector3<N> vector)
Deprecated, for removal: This API element is subject to removal in a future version.default Set<LiveEntity>
Deprecated, for removal: This API element is subject to removal in a future version.getPosition(double x, double y, double z)
getPosition(int x, int y, int z)
default <N extends Number>
@NotNull SyncPosition<N>getPosition(@NotNull Vector3<N> vector)
default Set<LiveTileEntity>
Deprecated, for removal: This API element is subject to removal in a future version.boolean
isLoaded()
-
Method Details
-
getPosition
-
getAsyncPosition
Deprecated, for removal: This API element is subject to removal in a future version. -
getPosition
-
getAsyncPosition
Deprecated, for removal: This API element is subject to removal in a future version. -
isLoaded
boolean isLoaded() -
getEntities
Deprecated, for removal: This API element is subject to removal in a future version. -
getLiveEntities
Stream<LiveEntity> getLiveEntities() -
getTileEntities
Deprecated, for removal: This API element is subject to removal in a future version. -
getLiveTileEntities
Stream<LiveTileEntity> getLiveTileEntities() -
getPosition
@NotNull default <N extends Number> @NotNull SyncPosition<N> getPosition(@NotNull @NotNull Vector3<N> vector) -
getAsyncPosition
@NotNull @Deprecated(forRemoval=true) default <N extends Number> @NotNull ASyncPosition<N> getAsyncPosition(@NotNull @NotNull Vector3<N> vector)Deprecated, for removal: This API element is subject to removal in a future version.
-