mirror of
https://github.com/catfoolyou/Project164.git
synced 2025-05-16 17:14:49 -05:00
12 lines
348 B
Java
12 lines
348 B
Java
package net.minecraft.src;
|
|
|
|
class AnvilChunkLoaderPending {
|
|
public final ChunkCoordIntPair chunkCoordinate;
|
|
public final NBTTagCompound nbtTags;
|
|
|
|
public AnvilChunkLoaderPending(ChunkCoordIntPair par1ChunkCoordIntPair, NBTTagCompound par2NBTTagCompound) {
|
|
this.chunkCoordinate = par1ChunkCoordIntPair;
|
|
this.nbtTags = par2NBTTagCompound;
|
|
}
|
|
}
|