2019-01-24 16:43:03 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-06-14 14:36:49 +08:00
|
|
|
|
|
|
|
|
|
using osu.Game.Rulesets.Difficulty;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Difficulty
|
|
|
|
|
{
|
|
|
|
|
public class OsuDifficultyAttributes : DifficultyAttributes
|
|
|
|
|
{
|
2021-06-08 17:43:59 +08:00
|
|
|
|
public double AimStrain { get; set; }
|
|
|
|
|
public double SpeedStrain { get; set; }
|
2021-09-14 08:34:21 +08:00
|
|
|
|
public double FlashlightRating { get; set; }
|
2021-06-08 17:43:59 +08:00
|
|
|
|
public double ApproachRate { get; set; }
|
|
|
|
|
public double OverallDifficulty { get; set; }
|
2021-09-24 22:02:19 +08:00
|
|
|
|
public double DrainRate { get; set; }
|
2021-06-08 17:43:59 +08:00
|
|
|
|
public int HitCircleCount { get; set; }
|
2021-10-14 01:04:34 +08:00
|
|
|
|
public int SliderCount { get; set; }
|
2021-06-08 17:43:59 +08:00
|
|
|
|
public int SpinnerCount { get; set; }
|
2018-06-14 14:36:49 +08:00
|
|
|
|
}
|
|
|
|
|
}
|