mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Add a method of finding and applying settings with classic default value
This commit is contained in:
@ -9,5 +9,11 @@ namespace osu.Game.Overlays.Settings
|
||||
public interface ISettingsItem : IDrawable, IDisposable
|
||||
{
|
||||
event Action SettingChanged;
|
||||
|
||||
/// <summary>
|
||||
/// Apply the default values of a setting item, if the setting item specifies a "classic" default via <see cref="SettingsItem{T}.ApplyClassicDefault"/>.
|
||||
/// </summary>
|
||||
/// <param name="useClassicDefault">Whether to apply the classic value. If <c>false</c>, the standard default is applied.</param>
|
||||
void ApplyClassicDefault(bool useClassicDefault);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user