mirror of
https://git.zelz.net/catfoolyou/Project164.git
synced 2025-12-14 19:37:42 +00:00
sp-server
This commit is contained in:
21
sp-server/src_aux/AnvilConverterData.java
Normal file
21
sp-server/src_aux/AnvilConverterData.java
Normal file
@@ -0,0 +1,21 @@
|
||||
package net.minecraft.src;
|
||||
|
||||
public class AnvilConverterData {
|
||||
public long lastUpdated;
|
||||
public boolean terrainPopulated;
|
||||
public byte[] heightmap;
|
||||
public NibbleArrayReader blockLight;
|
||||
public NibbleArrayReader skyLight;
|
||||
public NibbleArrayReader data;
|
||||
public byte[] blocks;
|
||||
public NBTTagList entities;
|
||||
public NBTTagList tileEntities;
|
||||
public NBTTagList tileTicks;
|
||||
public final int x;
|
||||
public final int z;
|
||||
|
||||
public AnvilConverterData(int par1, int par2) {
|
||||
this.x = par1;
|
||||
this.z = par2;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user