Fix some data types on ScoreInfo

This commit is contained in:
Dean Herbert
2018-11-30 20:43:38 +09:00
parent cc488fe275
commit af3ef9a089
6 changed files with 15 additions and 16 deletions

View File

@ -21,10 +21,12 @@ namespace osu.Game.Scoring
public ScoreRank Rank { get; set; }
public double TotalScore { get; set; }
public int TotalScore { get; set; }
[Column(TypeName="DECIMAL(1,4)")]
public double Accuracy { get; set; }
[NotMapped]
public double Health { get; set; } = 1;
public double? PP { get; set; }