Fix new scoring related properties not storing to realm due to `internal` spec

This commit is contained in:
Dean Herbert 2023-07-05 19:47:44 +09:00
parent 49e5558e4f
commit 00c68cad53
1 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ public class ScoreInfo : RealmObject, IHasGuidPrimaryKey, IHasRealmFiles, ISoftD
/// <remarks>
/// This may not match the version stored in the replay files.
/// </remarks>
internal int TotalScoreVersion { get; set; } = LegacyScoreEncoder.LATEST_VERSION;
public int TotalScoreVersion { get; set; } = LegacyScoreEncoder.LATEST_VERSION;
/// <summary>
/// Used to preserve the total score for legacy scores.
@ -72,7 +72,7 @@ public class ScoreInfo : RealmObject, IHasGuidPrimaryKey, IHasRealmFiles, ISoftD
/// <remarks>
/// Not populated if <see cref="IsLegacyScore"/> is <c>false</c>.
/// </remarks>
internal long? LegacyTotalScore { get; set; }
public long? LegacyTotalScore { get; set; }
public int MaxCombo { get; set; }