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