Files
Fishing2/Assets/Scripts/NBC/Runtime/UI/Attributes/AutoFindAttribute.cs
2025-07-03 14:16:18 +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;
}
}