9 lines
226 B
C#
9 lines
226 B
C#
using System.Reflection;
|
|
|
|
namespace NaughtyAttributes.Editor
|
|
{
|
|
public abstract class NativePropertyDrawer
|
|
{
|
|
public abstract void DrawNativeProperty(UnityEngine.Object target, PropertyInfo property);
|
|
}
|
|
}
|