2019-01-31 10:17:42 +00:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2019-01-18 05:33:40 +00:00
|
|
|
|
2019-06-11 17:31:01 +00:00
|
|
|
namespace osu.Game.Online
|
2019-01-18 05:33:40 +00:00
|
|
|
{
|
|
|
|
public enum DownloadState
|
|
|
|
{
|
2022-09-08 07:48:43 +00:00
|
|
|
Unknown,
|
2019-01-18 05:33:40 +00:00
|
|
|
NotDownloaded,
|
|
|
|
Downloading,
|
2021-01-13 15:04:29 +00:00
|
|
|
Importing,
|
2019-01-18 05:33:40 +00:00
|
|
|
LocallyAvailable
|
|
|
|
}
|
|
|
|
}
|