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

@ -184,7 +184,7 @@ namespace osu.Game.Overlays.Mods
private void displayMod(Mod mod)
{
displayIcon.Icon = mod.Icon;
text.Text = mod.Name.GetDescription();
text.Text = mod.Name;
}
private void displaySelectedMod()