Files
Cielonos/Assets/Scripts/Settings/Attributes/SettingsIgnoreAttribute.cs
SoulliesOfficial 6d7ebc5825 Passion & UI
2026-06-12 17:11:39 -04:00

12 lines
339 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
namespace Cielonos.Settings
{
/// <summary>
/// 标记设置字段不参与 UI 自动生成。
/// 用于需要自定义 UI 处理的字段(如 locale、bindingOverridesJson
/// </summary>
[AttributeUsage(AttributeTargets.Field)]
public sealed class SettingsIgnoreAttribute : Attribute { }
}