Tri-Inspector/Runtime/Attributes/SceneAttribute.cs

11 lines
240 B
C#
Raw Normal View History

2022-07-16 04:28:16 -04:00
using System;
using System.Diagnostics;
namespace TriInspector
{
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
[Conditional("UNITY_EDITOR")]
public sealed class SceneAttribute : Attribute
{
}
}