// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Bindables; namespace osu.Framework.Configuration.Tracking { /// /// An that provides a way to track its config settings. /// public interface ITrackableConfigManager : IConfigManager { /// /// Retrieves all the settings of this that are to be tracked for changes. /// /// A list of . TrackedSettings CreateTrackedSettings(); /// /// Loads s into . /// /// The settings to load into. void LoadInto(TrackedSettings settings); } }