Tri-Inspector/Runtime/Attributes/HideReferencePickerAttribute.cs
2022-08-03 17:41:01 +03:00

9 lines
194 B
C#

using System;
namespace TriInspector
{
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public sealed class HideReferencePickerAttribute : Attribute
{
}
}