mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 23:23:04 +08:00
Rename typo'd method
This commit is contained in:
parent
e99310b59c
commit
a8dfa5e2a9
@ -28,7 +28,7 @@ namespace osu.Game.Online.Rooms
|
|||||||
DownloadProgress = downloadProgress;
|
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 Downloading(double progress) => new BeatmapAvailability(DownloadState.Downloading, progress);
|
||||||
public static BeatmapAvailability Downloaded() => new BeatmapAvailability(DownloadState.Downloaded);
|
public static BeatmapAvailability Downloaded() => new BeatmapAvailability(DownloadState.Downloaded);
|
||||||
public static BeatmapAvailability LocallyAvailable() => new BeatmapAvailability(DownloadState.LocallyAvailable);
|
public static BeatmapAvailability LocallyAvailable() => new BeatmapAvailability(DownloadState.LocallyAvailable);
|
||||||
|
Loading…
Reference in New Issue
Block a user