mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-01 05:47:45 +01:00
a0fc0979f7
By: Erik Broes <erikbroes@grum.nl>
24 lines
312 B
Java
24 lines
312 B
Java
|
|
package org.bukkit;
|
|
|
|
/**
|
|
* Represents a chunk of blocks
|
|
*/
|
|
public interface Chunk {
|
|
|
|
/**
|
|
* Gets the X-coordinate of this chunk
|
|
*
|
|
* @return X-coordinate
|
|
*/
|
|
int getX();
|
|
|
|
/**
|
|
* Gets the Z-coordinate of this chunk
|
|
*
|
|
* @return Z-coordinate
|
|
*/
|
|
int getZ();
|
|
|
|
}
|