Make settings dropdown abstract

This commit is contained in:
Joehu
2020-12-19 16:57:42 -08:00
parent b87f89986a
commit 5b8e35c98c

View File

@ -9,7 +9,7 @@ using osu.Game.Graphics.UserInterface;
namespace osu.Game.Overlays.Settings namespace osu.Game.Overlays.Settings
{ {
public class SettingsDropdown<T> : SettingsItem<T> public abstract class SettingsDropdown<T> : SettingsItem<T>
{ {
protected new OsuDropdown<T> Control => (OsuDropdown<T>)base.Control; protected new OsuDropdown<T> Control => (OsuDropdown<T>)base.Control;