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