blob: 321bd412f85cc6b7e34955c574981f4b800f6bf9 [file] [log] [blame] [raw]
package net.lightstone.io;
import java.io.IOException;
import net.lightstone.model.Chunk;
/**
* An implementation of the {@link ChunkIoService} which reads and writes NBT
* maps.
* @author Graham Edgecombe
*/
public final class NbtChunkIoService implements ChunkIoService {
@Override
public Chunk read(int x, int z) {
return null;
}
@Override
public void write(int x, int z, Chunk chunk) throws IOException {
}
}