Rivoreo Source Code Repositories
src.rivoreo.one
/
glowstone
/
66de9b735abfe33094323349be854cd6d4b94197
/
.
/
src
/
net
/
lightstone
/
io
/
ChunkIoService.java
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
;
}