using System; namespace BepInEx.Configuration { /// /// Arguments for events concerning a change of a setting. /// /// public sealed class SettingChangedEventArgs : EventArgs { /// public SettingChangedEventArgs(ConfigEntryBase changedSetting) { ChangedSetting = changedSetting; } /// /// Setting that was changed /// public ConfigEntryBase ChangedSetting { get; } } }