1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 09:32:55 +08:00

Fix post-merge errors

This commit is contained in:
smoogipoo 2019-02-19 16:41:53 +09:00
parent 86b1a06b3d
commit 3abb281ad5
2 changed files with 1 additions and 8 deletions

View File

@ -2,7 +2,6 @@
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Rulesets.Difficulty;
using osu.Game.Rulesets.Mods;
namespace osu.Game.Rulesets.Catch.Difficulty
{
@ -10,10 +9,5 @@ namespace osu.Game.Rulesets.Catch.Difficulty
{
public double ApproachRate;
public int MaxCombo;
public CatchDifficultyAttributes(Mod[] mods)
: base(mods)
{
}
}
}

View File

@ -12,7 +12,6 @@ using osu.Game.Rulesets.Catch.UI;
using osu.Game.Rulesets.Difficulty;
using osu.Game.Rulesets.Difficulty.Preprocessing;
using osu.Game.Rulesets.Difficulty.Skills;
using osu.Game.Rulesets.Mods;
namespace osu.Game.Rulesets.Catch.Difficulty
{
@ -78,6 +77,6 @@ namespace osu.Game.Rulesets.Catch.Difficulty
new Movement(),
};
protected override DifficultyAttributes CreateDifficultyAttributes(Mod[] mods) => new CatchDifficultyAttributes(mods);
protected override DifficultyAttributes CreateDifficultyAttributes() => new CatchDifficultyAttributes();
}
}