// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using osu.Framework.Graphics; namespace osu.Game.Overlays.Settings { public interface ISettingsItem : IDrawable, IDisposable { event Action SettingChanged; /// /// Apply the default values of a setting item, if the setting item specifies a "classic" default via . /// /// Whether to apply the classic value. If false, the standard default is applied. void ApplyClassicDefault(bool useClassicDefault); } }