mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-25 18:20:15 +00:00
17 lines
315 B
C#
17 lines
315 B
C#
using System;
|
|
|
|
namespace YooAsset.Editor
|
|
{
|
|
/// <summary>
|
|
/// 编辑器显示名字
|
|
/// </summary>
|
|
public class DisplayNameAttribute : Attribute
|
|
{
|
|
public string DisplayName;
|
|
|
|
public DisplayNameAttribute(string name)
|
|
{
|
|
this.DisplayName = name;
|
|
}
|
|
}
|
|
} |