10 lines
249 B
C#
10 lines
249 B
C#
|
namespace MinecraftDiscordBot;
|
|||
|
|
|||
|
public interface IChunkWaiter {
|
|||
|
bool Finished { get; }
|
|||
|
int ID { get; }
|
|||
|
bool IsCancellationRequested { get; }
|
|||
|
void AddChunk(int chunkId, int totalChunks, string value);
|
|||
|
void SetUnsuccessful();
|
|||
|
}
|