unity-atoms/Source/Editor/Drawers/Lists/IntListDrawer.cs

10 lines
186 B
C#
Raw Normal View History

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