mcdiscordbot/MinecraftDiscordBot/IChunkWaiter.cs

10 lines
249 B
C#
Raw Permalink Normal View History

namespace MinecraftDiscordBot;
public interface IChunkWaiter {
bool Finished { get; }
int ID { get; }
bool IsCancellationRequested { get; }
void AddChunk(int chunkId, int totalChunks, string value);
void SetUnsuccessful();
}