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

11 lines
234 B
C#

using System;
using UnityEngine;
namespace NaughtyAttributes
{
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
public class ShowNativePropertyAttribute : DrawerAttribute
{
}
}