17 lines
384 B
C#
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;
|
|
}
|
|
}
|
|
}
|