Files
Fishing2/Assets/Scripts/NBC.Fantasy/Editor/Asset/Attributes.cs
2025-11-12 17:24:02 +08:00

18 lines
365 B
C#

using System;
namespace NBC.Editor
{
/// <summary>
/// 自定义名称
/// </summary>
[AttributeUsage(AttributeTargets.All, Inherited = false)]
public sealed class DisplayNameAttribute : Attribute
{
public DisplayNameAttribute(string name)
{
showName = name;
}
public string showName;
}
}