diff options
Diffstat (limited to 'LibBeatmapDownload/Status.cs')
-rw-r--r-- | LibBeatmapDownload/Status.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/LibBeatmapDownload/Status.cs b/LibBeatmapDownload/Status.cs new file mode 100644 index 0000000..f5602a4 --- /dev/null +++ b/LibBeatmapDownload/Status.cs @@ -0,0 +1,10 @@ +namespace LibBeatmapDownload; + +public enum Status { + NotQueued, + Error, + Waiting, + Connecting, + Downloading, + Finished +} |