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

16 lines
324 B
C#

using System;
namespace PashaBibko.Pacore.Attributes
{
[AttributeUsage(AttributeTargets.Method)]
public class InspectorCallableAttribute : Attribute
{
public string ButtonName { get; }
public InspectorCallableAttribute(string name)
{
ButtonName = name;
}
}
}