Net-Game/Library/PackageCache/com.unity.shadergraph@cdef3258c742/Editor/Data/Nodes/FormerNameAttribute.cs
2025-03-28 08:33:16 -04:00

16 lines
338 B
C#

using System;
namespace UnityEditor.ShaderGraph
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
class FormerNameAttribute : Attribute
{
public string fullName { get; private set; }
public FormerNameAttribute(string fullName)
{
this.fullName = fullName;
}
}
}