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-21 11:26:15 +08:00
|
|
|
|
|
|
|
|
|
using osu.Game.Rulesets.Difficulty;
|
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Difficulty
|
|
|
|
|
{
|
|
|
|
|
public class CatchDifficultyAttributes : DifficultyAttributes
|
|
|
|
|
{
|
|
|
|
|
public double ApproachRate;
|
|
|
|
|
public int MaxCombo;
|
|
|
|
|
|
2019-02-18 13:46:32 +08:00
|
|
|
|
public CatchDifficultyAttributes(Mod[] mods)
|
|
|
|
|
: base(mods)
|
2018-06-21 11:26:15 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|