osu/osu.Game/Rulesets/Difficulty/DifficultyAttributes.cs

25 lines
548 B
C#
Raw Normal View History

// 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.
using osu.Game.Rulesets.Mods;
namespace osu.Game.Rulesets.Difficulty
{
public class DifficultyAttributes
{
2019-02-19 04:40:39 +00:00
public Mod[] Mods;
public double StarRating;
2019-02-19 04:40:39 +00:00
public DifficultyAttributes()
{
}
public DifficultyAttributes(Mod[] mods, double starRating)
{
Mods = mods;
StarRating = starRating;
}
}
}