1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-09 12:57:45 +08:00

46 lines
1.1 KiB
C#
Raw Normal View History

2018-01-05 20:21:19 +09:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-11-29 15:41:48 +09:00
2017-03-15 14:06:05 +09:00
using System;
using System.Collections.Generic;
2017-07-26 13:22:46 +09:00
using osu.Game.Beatmaps;
2017-04-18 16:05:58 +09:00
using osu.Game.Rulesets.Mods;
using osu.Game.Users;
2017-04-18 16:05:58 +09:00
using osu.Game.Rulesets.Replays;
2017-04-18 16:05:58 +09:00
namespace osu.Game.Rulesets.Scoring
2016-11-29 15:41:48 +09:00
{
public class Score
{
2017-03-13 18:34:43 -03:00
public ScoreRank Rank { get; set; }
2017-03-15 14:06:05 +09:00
2016-11-29 23:59:56 +09:00
public double TotalScore { get; set; }
2016-11-29 23:59:56 +09:00
public double Accuracy { get; set; }
2017-03-15 14:06:05 +09:00
public double Health { get; set; } = 1;
2017-09-14 20:05:43 +09:00
public double? PP { get; set; }
2017-07-29 00:31:52 +02:00
2017-03-10 16:05:05 +09:00
public int MaxCombo { get; set; }
2017-03-10 16:05:05 +09:00
public int Combo { get; set; }
public RulesetInfo Ruleset { get; set; }
2017-09-14 20:05:43 +09:00
public Mod[] Mods { get; set; } = { };
public User User;
2017-03-15 14:06:05 +09:00
public Replay Replay;
2017-03-15 14:06:05 +09:00
2017-03-04 19:02:36 +09:00
public BeatmapInfo Beatmap;
2017-03-15 14:06:05 +09:00
public long OnlineScoreID;
2017-05-16 21:14:50 +08:00
public DateTimeOffset Date;
2017-03-15 14:06:05 +09:00
public Dictionary<HitResult, object> Statistics = new Dictionary<HitResult, object>();
2016-11-29 15:41:48 +09:00
}
}