mirror of https://github.com/ppy/osu
Rename typo'd method
This commit is contained in:
parent
e99310b59c
commit
a8dfa5e2a9
|
@ -28,7 +28,7 @@ private BeatmapAvailability(DownloadState state, double? downloadProgress = null
|
|||
DownloadProgress = downloadProgress;
|
||||
}
|
||||
|
||||
public static BeatmapAvailability NotDownload() => new BeatmapAvailability(DownloadState.NotDownloaded);
|
||||
public static BeatmapAvailability NotDownloaded() => new BeatmapAvailability(DownloadState.NotDownloaded);
|
||||
public static BeatmapAvailability Downloading(double progress) => new BeatmapAvailability(DownloadState.Downloading, progress);
|
||||
public static BeatmapAvailability Downloaded() => new BeatmapAvailability(DownloadState.Downloaded);
|
||||
public static BeatmapAvailability LocallyAvailable() => new BeatmapAvailability(DownloadState.LocallyAvailable);
|
||||
|
|
Loading…
Reference in New Issue