remove ruleset specific mods

This commit is contained in:
LeNitrous
2019-03-04 17:36:44 +08:00
parent b83d44c316
commit c271a3a781
12 changed files with 8 additions and 100 deletions

View File

@ -10,6 +10,7 @@ using osu.Game.Rulesets.UI;
using System.Collections.Generic;
using osu.Framework.Graphics;
using osu.Framework.Input.Bindings;
using osu.Game.Rulesets.Catch.Objects;
using osu.Game.Rulesets.Catch.Replays;
using osu.Game.Rulesets.Replays.Types;
using osu.Game.Beatmaps.Legacy;
@ -102,7 +103,7 @@ namespace osu.Game.Rulesets.Catch
case ModType.Fun:
return new Mod[]
{
new MultiMod(new CatchModWindUp(), new CatchModWindDown())
new MultiMod(new ModWindUp<CatchHitObject>(), new ModWindDown<CatchHitObject>())
};
default:
return new Mod[] { };

View File

@ -1,12 +0,0 @@
// 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.
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Catch.Objects;
namespace osu.Game.Rulesets.Catch.Mods
{
public class CatchModWindDown : ModWindDown<CatchHitObject>
{
}
}

View File

@ -1,12 +0,0 @@
// 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.
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Catch.Objects;
namespace osu.Game.Rulesets.Catch.Mods
{
public class CatchModWindUp : ModWindUp<CatchHitObject>
{
}
}