Files
Fruitomation/Assets/Pacore/Runtime/Attributes/DetectInspectorChanges.cs
2026-03-30 10:32:44 +01:00

17 lines
384 B
C#

using UnityEngine;
using System;
namespace PashaBibko.Pacore.Attributes
{
[AttributeUsage(validOn: AttributeTargets.Field)]
public sealed class DetectInspectorChangesAttribute : PropertyAttribute
{
public string ActionName { get; }
public DetectInspectorChangesAttribute(string function)
{
ActionName = function;
}
}
}