Rename BeatmapInfo variables which were named beatmap for clarity

This commit is contained in:
Dean Herbert
2021-10-02 12:44:22 +09:00
parent 1be96b4292
commit 973c31132b
19 changed files with 140 additions and 140 deletions

View File

@ -37,16 +37,16 @@ namespace osu.Game.Overlays.BeatmapSet
}
}
private BeatmapInfo beatmap;
private BeatmapInfo beatmapInfo;
public BeatmapInfo Beatmap
public BeatmapInfo BeatmapInfo
{
get => beatmap;
get => beatmapInfo;
set
{
if (value == beatmap) return;
if (value == beatmapInfo) return;
basic.Beatmap = advanced.Beatmap = beatmap = value;
basic.BeatmapInfo = advanced.BeatmapInfo = beatmapInfo = value;
}
}