Remove unnecessary base class

This commit is contained in:
Dean Herbert
2018-12-07 20:12:56 +09:00
parent 808f02b51d
commit d379d02761
2 changed files with 16 additions and 39 deletions

View File

@ -1,24 +0,0 @@
// 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.Graphics;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Scoring;
using osu.Game.Rulesets.UI;
namespace osu.Game.Rulesets.Mods
{
public abstract class ModBlinds<T> : Mod, IApplicableToRulesetContainer<T>, IApplicableToScoreProcessor
where T : HitObject
{
public override string Name => "Blinds";
public override string Acronym => "BL";
public override FontAwesome Icon => FontAwesome.fa_adjust;
public override ModType Type => ModType.DifficultyIncrease;
public override string Description => "Play with blinds on your screen.";
public override bool Ranked => false;
public abstract void ApplyToRulesetContainer(RulesetContainer<T> rulesetContainer);
public abstract void ApplyToScoreProcessor(ScoreProcessor scoreProcessor);
}
}