mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 17:43:05 +08:00
Make RoomScore derive ScoreInfo
This commit is contained in:
parent
6afd2f7263
commit
3570c35d7f
@ -98,8 +98,9 @@ namespace osu.Game.Scoring
|
||||
}
|
||||
}
|
||||
|
||||
[JsonIgnore]
|
||||
public User User;
|
||||
[NotMapped]
|
||||
[JsonProperty("user")]
|
||||
public User User { get; set; }
|
||||
|
||||
[JsonIgnore]
|
||||
[Column("User")]
|
||||
|
@ -102,20 +102,8 @@ namespace osu.Game.Screens.Multi.Match.Components
|
||||
Overall
|
||||
}
|
||||
|
||||
public class RoomScore
|
||||
public class RoomScore : ScoreInfo
|
||||
{
|
||||
[JsonProperty("user")]
|
||||
public User User { get; set; }
|
||||
|
||||
[JsonProperty("accuracy")]
|
||||
public double Accuracy { get; set; }
|
||||
|
||||
[JsonProperty("total_score")]
|
||||
public int TotalScore { get; set; }
|
||||
|
||||
[JsonProperty("pp")]
|
||||
public double? PP { get; set; }
|
||||
|
||||
[JsonProperty("attempts")]
|
||||
public int TotalAttempts { get; set; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user