mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 08:44:29 +08:00
26 lines
626 B
C#
26 lines
626 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
namespace GFramework.Game.Abstractions.Setting;
|
|
|
|
/// <summary>
|
|
/// 设置变更事件基类
|
|
/// 定义了设置变更事件的基本结构和属性
|
|
/// </summary>
|
|
public interface ISettingsChangedEvent
|
|
{
|
|
/// <summary>
|
|
/// 获取变更的设置类型
|
|
/// </summary>
|
|
Type SettingsType { get; }
|
|
|
|
/// <summary>
|
|
/// 获取变更的设置实例
|
|
/// </summary>
|
|
ISettingsSection Settings { get; }
|
|
|
|
/// <summary>
|
|
/// 获取变更发生的时间
|
|
/// </summary>
|
|
DateTime ChangedAt { get; }
|
|
} |