1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 13:32:54 +08:00

Update osu.Game/Scoring/ScoreInfo.cs

Co-authored-by: Dean Herbert <pe@ppy.sh>
This commit is contained in:
Cootz 2023-02-07 11:23:39 +03:00 committed by GitHub
parent a1ee3df453
commit 957c9e7e27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,9 +67,9 @@ namespace osu.Game.Scoring
public string MaximumStatisticsJson { get; set; } = string.Empty;
/// <summary>
/// Hash of the beatmap where it scored
/// The beatmap's <see cref="BeatmapInfo.Hash"> at the point in time when the score was set.
/// </summary>
public string OriginalBeatmapHash { get; set; } = string.Empty;
public string BeatmapHash { get; set; } = string.Empty;
public ScoreInfo(BeatmapInfo? beatmap = null, RulesetInfo? ruleset = null, RealmUser? realmUser = null)
{