package org.dynmap; public class DynmapChunk { public int x, z; public DynmapChunk(int x, int z) { this.x = x; this.z = z; } }