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