Rename BeatmapSetOnlineStatus to BeatmapOnlineStatus

This variable is used at more than just a set level.
This commit is contained in:
Dean Herbert
2021-11-24 18:42:47 +09:00
parent 5ff62a8e04
commit 183b95cbc2
28 changed files with 53 additions and 53 deletions

View File

@ -39,9 +39,9 @@ namespace osu.Game.Models
[Ignored]
public RealmNamedFileUsage? File => BeatmapSet?.Files.First(f => f.File.Hash == Hash);
public BeatmapSetOnlineStatus Status
public BeatmapOnlineStatus Status
{
get => (BeatmapSetOnlineStatus)StatusInt;
get => (BeatmapOnlineStatus)StatusInt;
set => StatusInt = (int)value;
}