9 lines
202 B
C#
9 lines
202 B
C#
using System.Reflection;
|
|
|
|
namespace NaughtyAttributes.Editor
|
|
{
|
|
public abstract class FieldDrawer
|
|
{
|
|
public abstract void DrawField(UnityEngine.Object target, FieldInfo field);
|
|
}
|
|
}
|