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:32:07 +08:00
|
|
|
|
|
2019-05-29 17:22:51 +08:00
|
|
|
|
using osu.Game.Rulesets.Difficulty.Skills;
|
2018-06-14 14:32:07 +08:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Difficulty
|
|
|
|
|
{
|
|
|
|
|
public class DifficultyAttributes
|
|
|
|
|
{
|
2019-02-19 12:40:39 +08:00
|
|
|
|
public Mod[] Mods;
|
2019-05-29 17:22:51 +08:00
|
|
|
|
public Skill[] Skills;
|
2019-02-12 15:01:25 +08:00
|
|
|
|
|
|
|
|
|
public double StarRating;
|
2020-08-28 18:16:20 +08:00
|
|
|
|
public int MaxCombo;
|
2019-02-12 15:01:25 +08:00
|
|
|
|
|
2019-02-19 12:40:39 +08:00
|
|
|
|
public DifficultyAttributes()
|
2019-02-12 15:01:25 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
2018-06-14 14:32:07 +08:00
|
|
|
|
|
2019-05-29 17:22:51 +08:00
|
|
|
|
public DifficultyAttributes(Mod[] mods, Skill[] skills, double starRating)
|
2018-06-14 14:32:07 +08:00
|
|
|
|
{
|
|
|
|
|
Mods = mods;
|
2019-05-29 17:22:51 +08:00
|
|
|
|
Skills = skills;
|
2018-06-14 14:32:07 +08:00
|
|
|
|
StarRating = starRating;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|