unity-atoms/Source/Editor/Drawers/Events/Vector3Vector3EventDrawer.cs

10 lines
222 B
C#
Raw Normal View History

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