module-inspector/Runtime/AbstractMethodAttribute.cs

9 lines
No EOL
185 B
C#

using UnityEngine;
namespace Module.Inspector
{
public abstract class AbstractMethodAttribute : PropertyAttribute
{
public abstract EMethodType Type { get; }
}
}