0.2.0: Moved into inspector drawer from module.toolbox to module.inspector

This commit is contained in:
Anders Ejlersen 2021-09-18 15:48:14 +02:00
parent 5671c2c754
commit ffec2abdf4
227 changed files with 5306 additions and 29 deletions

View file

@ -0,0 +1,11 @@
using System.Reflection;
using UnityEngine;
namespace Module.Inspector.Editor
{
public abstract class DrawerMethodDrawer : AbstractMethodDrawer
{
public abstract bool Draw(Rect position, DrawerMethodAttribute attribute, Object target, MethodInfo methodInfo);
public abstract string GetErrorMessage();
}
}