Add sane defaults for abstract Mod class and remove remaining use of enum.

This commit is contained in:
Dean Herbert
2017-03-06 18:28:30 +09:00
parent 45f500920c
commit 12a3b1414f
6 changed files with 46 additions and 169 deletions

View File

@ -19,7 +19,6 @@ namespace osu.Game.Modes.Catch
{
public override string Description => @"Play with no approach circles and fading notes for a slight score advantage.";
public override double ScoreMultiplier => 1.06;
public override Type[] IncompatibleMods => new Type[] { };
}
public class CatchModHardRock : ModHardRock
@ -56,7 +55,6 @@ namespace osu.Game.Modes.Catch
public class CatchModFlashlight : ModFlashlight
{
public override double ScoreMultiplier => 1.12;
public override Type[] IncompatibleMods => new Type[] { };
}
public class CatchModPerfect : ModPerfect