Tri-Inspector/Runtime/Attributes/AssetsOnlyAttribute.cs

12 lines
256 B
C#
Raw Normal View History

2022-06-10 08:33:05 -04:00
using System;
using System.Diagnostics;
namespace TriInspector
{
[AttributeUsage((AttributeTargets.Field | AttributeTargets.Property))]
[Conditional("UNITY_EDITOR")]
public sealed class AssetsOnlyAttribute : Attribute
{
}
}