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
|
|
|
|
|
{
|
2018-06-14 15:13:21 +08:00
|
|
|
|
public double AimStrain;
|
|
|
|
|
public double SpeedStrain;
|
2018-06-14 15:27:05 +08:00
|
|
|
|
public double ApproachRate;
|
|
|
|
|
public double OverallDifficulty;
|
2020-10-03 22:52:33 +08:00
|
|
|
|
public int HitCircleCount;
|
2018-06-14 14:36:49 +08:00
|
|
|
|
}
|
|
|
|
|
}
|