package net.lightstone.io; | |
import java.io.IOException; | |
import net.lightstone.model.Chunk; | |
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 { | |
} | |
} |