geforkt von Mirrors/Paper
38 Zeilen
651 B
Java
38 Zeilen
651 B
Java
|
|
package org.bukkit.craftbukkit;
|
|
|
|
import org.bukkit.Chunk;
|
|
|
|
public class CraftChunk implements Chunk {
|
|
private final int x;
|
|
private final int z;
|
|
|
|
protected CraftChunk(final int x, final int z) {
|
|
this.x = x;
|
|
this.z = z;
|
|
}
|
|
|
|
/**
|
|
* Gets the X-coordinate of this chunk
|
|
*
|
|
* @return X-coordinate
|
|
*/
|
|
public int getX() {
|
|
return x;
|
|
}
|
|
|
|
/**
|
|
* Gets the Z-coordinate of this chunk
|
|
*
|
|
* @return Z-coordinate
|
|
*/
|
|
public int getZ() {
|
|
return z;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "CraftChunk{" + "x=" + x + "z=" + z + '}';
|
|
}
|
|
}
|