Move mod implementations to individual files

This commit is contained in:
Dean Herbert
2018-01-09 13:41:57 +09:00
parent bb57d33239
commit b8bb0a52e3
75 changed files with 1052 additions and 549 deletions

View File

@ -0,0 +1,11 @@
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Rulesets.Mods;
namespace osu.Game.Rulesets.Catch.Mods
{
public class CatchModPerfect : ModPerfect
{
}
}