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

9 lines
157 B
C#

using System;
namespace NaughtyAttributes
{
public abstract class MetaAttribute : NaughtyAttribute
{
public int Order { get; set; }
}
}