/// <summary> /// Creates a deep copy of the Chunk and its underlying NBT tree. /// </summary> /// <returns>A new Chunk with copied data.</returns> public AlphaChunk Copy() { return(AlphaChunk.Create(_tree.Copy())); }
/// <summary> /// Creates a deep copy of the Chunk and its underlying NBT tree. /// </summary> /// <returns>A new Chunk with copied data.</returns> public Chunk Copy() { return(Chunk.Create(_tree.Copy())); }
public AnvilChunk Copy() { return(AnvilChunk.Create(_tree.Copy())); }