Tri-Inspector/Runtime/Attributes/ValidateInputAttribute.cs
2023-03-12 11:38:39 +04:00

17 lines
382 B
C#

using System;
using System.Diagnostics;
namespace TriInspector
{
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
[Conditional("UNITY_EDITOR")]
public class ValidateInputAttribute : Attribute
{
public string Method { get; }
public ValidateInputAttribute(string method)
{
Method = method;
}
}
}