示例#1
0
 /// <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()));
 }
示例#2
0
 /// <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()));
 }
示例#3
0
 public AnvilChunk Copy()
 {
     return(AnvilChunk.Create(_tree.Copy()));
 }