geforkt von Mirrors/Paper
24 Zeilen
312 B
Java
24 Zeilen
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();
|
||
|
|
||
|
}
|