using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using UnityEngine; namespace TModule.Editor { [Conditional("UNITY_EDITOR")] [AttributeUsage(AttributeTargets.Class,AllowMultiple =false)] public class CustomMethodDrawerAttribute : Attribute { public Type AttributeType; public CustomMethodDrawerAttribute(Type type) { AttributeType = type; } } }