mirror of
https://git.zelz.net/catfoolyou/Project164.git
synced 2025-12-14 08:57:42 +00:00
sp-server
This commit is contained in:
22
sp-server/src_aux/RegionFileChunkBuffer.java
Normal file
22
sp-server/src_aux/RegionFileChunkBuffer.java
Normal file
@@ -0,0 +1,22 @@
|
||||
package net.minecraft.src;
|
||||
|
||||
import java.io.ByteArrayOutputStream;
|
||||
import java.io.IOException;
|
||||
|
||||
class RegionFileChunkBuffer extends ByteArrayOutputStream {
|
||||
private int chunkX;
|
||||
private int chunkZ;
|
||||
|
||||
final RegionFile regionFile;
|
||||
|
||||
public RegionFileChunkBuffer(RegionFile par1RegionFile, int par2, int par3) {
|
||||
super(8096);
|
||||
this.regionFile = par1RegionFile;
|
||||
this.chunkX = par2;
|
||||
this.chunkZ = par3;
|
||||
}
|
||||
|
||||
public void close() throws IOException {
|
||||
this.regionFile.write(this.chunkX, this.chunkZ, this.buf, this.count);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user