Tri-Inspector/Runtime/Attributes/DeclareGroupBaseAttribute.cs

14 lines
269 B
C#
Raw Normal View History

2021-12-07 10:20:36 -05:00
using System;
namespace TriInspector
{
public abstract class DeclareGroupBaseAttribute : Attribute
{
protected DeclareGroupBaseAttribute(string path)
{
Path = path ?? "None";
}
public string Path { get; }
}
}