mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 19:27:26 +08:00
20 lines
546 B
C#
20 lines
546 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Game.Database;
|
|
|
|
namespace osu.Game.Modes
|
|
{
|
|
public class Score
|
|
{
|
|
public double TotalScore { get; set; }
|
|
public double Accuracy { get; set; }
|
|
public double Health { get; set; }
|
|
public int MaxCombo { get; set; }
|
|
public int Combo { get; set; }
|
|
|
|
public Replay Replay;
|
|
public BeatmapInfo Beatmap;
|
|
}
|
|
}
|