osu/osu.Game/Online/DownloadState.cs

14 lines
310 B
C#
Raw Normal View History

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