mirror of https://github.com/ppy/osu
Fix post-merge errors
This commit is contained in:
parent
71ef039606
commit
7ba0d090fc
|
@ -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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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[]
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue