summary refs log tree commit diff
path: root/LibBeatmapDownload/Status.cs
blob: f5602a4fbf9f11d403b0fe0f486594a48aa1972b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
namespace LibBeatmapDownload;

public enum Status {
	NotQueued,
	Error,
	Waiting,
	Connecting,
	Downloading,
	Finished
}