示例#1
0
 /// <summary>
 /// constructor
 /// </summary>
 /// <param name="level"></param>
 /// <param name="chunkColumnLocation"></param>
 /// <param name="parentCancellationSources"></param>
 internal JGenerateChunkColumn(
     JGenerateChunks jobManager,
     Coordinate chunkColumnLocation
     ) : base(jobManager, chunkColumnLocation)
 {
     threadName = "Generate Column: " + chunkColumnLocation;
 }
 /// <summary>
 /// Create a new job, linked to the level
 /// </summary>
 /// <param name="level"></pa
 public JLoadChunks(Level <BlockStorageType> level) : base(level)
 {
     threadName = "Load Chunk Manager";
     chunkGenerationManagerJob = new JGenerateChunks(level);
 }