namespace GFramework.Game.Abstractions.Setting; /// /// 可重置设置接口,继承自ISettingsSection接口 /// 提供将设置重置为默认值的功能 /// public interface IResettable : ISettingsSection { /// /// 重置设置为默认值 /// void Reset(); }