Struct ChunkLoadResult
Describes how a chunk became available to the runtime.
public readonly record struct ChunkLoadResult : IEquatable<ChunkLoadResult>
- Implements
- Inherited Members
Constructors
ChunkLoadResult(Chunk, ChunkLoadSource)
Describes how a chunk became available to the runtime.
public ChunkLoadResult(Chunk Chunk, ChunkLoadSource Source)
Parameters
ChunkChunkThe resolved chunk instance.
SourceChunkLoadSourceThe source that produced the resolved chunk.
Properties
Chunk
The resolved chunk instance.
public Chunk Chunk { get; init; }
Property Value
Source
The source that produced the resolved chunk.
public ChunkLoadSource Source { get; init; }