1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-31 20:30:20 +08:00

Add setter for ScoreInfo.OnlineID

This commit is contained in:
Dean Herbert
2021-12-10 15:31:35 +09:00
Unverified
parent bf1418bafc
commit 7ac63485ef
+6 -1
View File
@@ -248,7 +248,12 @@ namespace osu.Game.Scoring
#region Implementation of IHasOnlineID
public long OnlineID => OnlineScoreID ?? -1;
[NotMapped]
public long OnlineID
{
get => OnlineScoreID ?? -1;
set => OnlineScoreID = value;
}
#endregion