mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Implement new difficulty calculator structure
This commit is contained in:
@ -8,7 +8,13 @@ namespace osu.Game.Rulesets.Difficulty
|
||||
public class DifficultyAttributes
|
||||
{
|
||||
public readonly Mod[] Mods;
|
||||
public readonly double StarRating;
|
||||
|
||||
public double StarRating;
|
||||
|
||||
public DifficultyAttributes(Mod[] mods)
|
||||
{
|
||||
Mods = mods;
|
||||
}
|
||||
|
||||
public DifficultyAttributes(Mod[] mods, double starRating)
|
||||
{
|
||||
|
Reference in New Issue
Block a user