Files
Fishing2/Assets/Scripts/NBC/UI/Runtime/Attributes/AutoFindAttribute.cs
2025-05-10 12:49:47 +08:00

11 lines
232 B
C#

using System;
using UnityEngine;
namespace NBC
{
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, Inherited = true)]
public class AutoFindAttribute : Attribute
{
public string Name;
}
}