blob: 68069c0b8216a2ae2adcf4d22cc556f01c6b2b45 [file] [log] [blame] [raw]
package net.lightstone.io;
import java.io.IOException;
import net.lightstone.model.Chunk;
public interface ChunkIoService {
public Chunk read(int x, int z) throws IOException;
public void write(int x, int z, Chunk chunk) throws IOException;
}