2019-01-24 08:43:03 +00: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 06:36:49 +00:00
|
|
|
|
|
|
|
|
|
using osu.Game.Rulesets.Difficulty;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Difficulty
|
|
|
|
|
{
|
|
|
|
|
public class OsuDifficultyAttributes : DifficultyAttributes
|
|
|
|
|
{
|
2018-06-14 07:13:21 +00:00
|
|
|
|
public double AimStrain;
|
|
|
|
|
public double SpeedStrain;
|
2018-06-14 07:27:05 +00:00
|
|
|
|
public double ApproachRate;
|
|
|
|
|
public double OverallDifficulty;
|
2020-10-03 14:52:33 +00:00
|
|
|
|
public int HitCircleCount;
|
2020-12-08 13:09:48 +00:00
|
|
|
|
public int SpinnerCount;
|
2018-06-14 06:36:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|