namespace GFramework.Game.Abstractions.Setting; /// /// 定义可应用设置的接口,继承自ISettingsSection /// public interface IApplyAbleSettings : ISettingsSection { /// /// 应用当前设置到系统中 /// Task Apply(); }