1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 07:27:25 +08:00
osu-lazer/osu.Game/Online/DownloadState.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
327 B
C#
Raw Normal View History

2019-01-31 18:17:42 +08: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 13:33:40 +08:00
namespace osu.Game.Online
2019-01-18 13:33:40 +08:00
{
public enum DownloadState
{
Unknown,
2019-01-18 13:33:40 +08:00
NotDownloaded,
Downloading,
Importing,
2019-01-18 13:33:40 +08:00
LocallyAvailable
}
}