9 lines
210 B
C#
9 lines
210 B
C#
using System.Reflection;
|
|
|
|
namespace NaughtyAttributes.Editor
|
|
{
|
|
public abstract class MethodDrawer
|
|
{
|
|
public abstract void DrawMethod(UnityEngine.Object target, MethodInfo methodInfo);
|
|
}
|
|
}
|