mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 00:27:51 +08:00
23 lines
646 B
C#
23 lines
646 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Game.Rulesets.Difficulty;
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Difficulty
|
|
{
|
|
public class OsuDifficultyAttributes : DifficultyAttributes
|
|
{
|
|
public double AimStrain;
|
|
public double SpeedStrain;
|
|
public double ApproachRate;
|
|
public double OverallDifficulty;
|
|
public int MaxCombo;
|
|
|
|
public OsuDifficultyAttributes(Mod[] mods, double starRating)
|
|
: base(mods, starRating)
|
|
{
|
|
}
|
|
}
|
|
}
|