Fix post-merge errors

This commit is contained in:
smoogipoo 2019-02-19 16:40:52 +09:00
parent 71ef039606
commit 7ba0d090fc
2 changed files with 1 additions and 7 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.Taiko.Difficulty
{
@ -10,10 +9,5 @@ public class TaikoDifficultyAttributes : DifficultyAttributes
{
public double GreatHitWindow;
public int MaxCombo;
public TaikoDifficultyAttributes(Mod[] mods)
: base(mods)
{
}
}
}

View File

@ -43,7 +43,7 @@ protected override IEnumerable<DifficultyHitObject> CreateDifficultyHitObjects(I
protected override Skill[] CreateSkills() => new Skill[] { new Strain() };
protected override DifficultyAttributes CreateDifficultyAttributes(Mod[] mods) => new TaikoDifficultyAttributes(mods);
protected override DifficultyAttributes CreateDifficultyAttributes() => new TaikoDifficultyAttributes();
protected override Mod[] DifficultyAdjustmentMods => new Mod[]
{