pixelgon/Assets/NaughtyAttributes/Scripts/Core/GroupAttributes/GroupAttribute.cs
2020-06-05 11:54:36 -07:00

14 lines
262 B
C#

using System;
namespace NaughtyAttributes
{
public abstract class GroupAttribute : NaughtyAttribute
{
public string Name { get; private set; }
public GroupAttribute(string name)
{
this.Name = name;
}
}
}