1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 14:13:18 +08:00

Removed unused function

This commit is contained in:
MrTheMake 2017-08-13 20:28:30 +02:00
parent 81289db33b
commit 2f89fc432b

View File

@ -41,11 +41,6 @@ namespace osu.Game.Rulesets
public abstract IEnumerable<Mod> GetModsFor(ModType type);
public Mod GetModByShortenedName(string shortenedName)
{
return GetAllMods().First(mod => mod.ShortenedName == shortenedName);
}
public Mod GetAutoplayMod() => GetAllMods().First(mod => mod is ModAutoplay);
protected Ruleset(RulesetInfo rulesetInfo)