mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 17:21:16 +08:00
39 lines
1017 B
C#
39 lines
1017 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
using GFramework.Game.Abstractions.Setting;
|
|
|
|
namespace GFramework.Game.Setting.Events;
|
|
|
|
/// <summary>
|
|
/// 表示设置重置事件
|
|
/// </summary>
|
|
/// <typeparam name="T">设置节类型</typeparam>
|
|
public class SettingsResetEvent<T>(T newSettings) : ISettingsChangedEvent
|
|
where T : ISettingsSection
|
|
{
|
|
/// <summary>
|
|
/// 获取重置后的新设置
|
|
/// </summary>
|
|
public T NewSettings { get; } = newSettings;
|
|
|
|
/// <summary>
|
|
/// 获取类型化的设置实例(返回新设置)
|
|
/// </summary>
|
|
public T TypedSettings => NewSettings;
|
|
|
|
/// <summary>
|
|
/// 获取设置类型
|
|
/// </summary>
|
|
public Type SettingsType => typeof(T);
|
|
|
|
/// <summary>
|
|
/// 获取设置实例
|
|
/// </summary>
|
|
public ISettingsSection Settings => NewSettings;
|
|
|
|
/// <summary>
|
|
/// 获取重置时间
|
|
/// </summary>
|
|
public DateTime ChangedAt { get; } = DateTime.UtcNow;
|
|
} |