11 lines
234 B
C#
11 lines
234 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace NaughtyAttributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
|
|
public class ShowNativePropertyAttribute : DrawerAttribute
|
|
{
|
|
|
|
}
|
|
}
|