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

13 lines
296 B
C#

using System;
namespace NaughtyAttributes
{
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)]
public class BoxGroupAttribute : GroupAttribute
{
public BoxGroupAttribute(string name = "")
: base(name)
{
}
}
}