Implement "classic" mod for all other legacy rulesets

Currently empty, automatically handled in game to not be selectable (see `Mod.HasImplementation`)
This commit is contained in:
Salman Ahmed
2021-04-21 09:14:31 +03:00
parent e90d791754
commit e3398d8f1f
6 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,11 @@
// 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;
namespace osu.Game.Rulesets.Catch.Mods
{
public class CatchModClassic : ModClassic
{
}
}