unity-atoms/Source/Editor/Drawers/Constants/Collider2DConstantDrawer.cs

10 lines
219 B
C#
Raw Normal View History

#if UNITY_2019_1_OR_NEWER
using UnityEditor;
namespace UnityAtoms.Editor
{
[CustomPropertyDrawer(typeof(Collider2DConstant))]
public class Collider2DConstantDrawer : AtomDrawer<Collider2DConstant> { }
}
#endif