mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-26 18:08:27 -05:00
16 lines
602 B
C#
16 lines
602 B
C#
#if UNITY_2019_1_OR_NEWER
|
|
using UnityEditor;
|
|
using UnityEngine.UIElements;
|
|
using UnityAtoms.Editor;
|
|
using UnityAtoms.MonoHooks;
|
|
|
|
namespace UnityAtoms.MonoHooks.Editor
|
|
{
|
|
/// <summary>
|
|
/// Event property drawer of type `ColliderGameObjectPair`. Inherits from `AtomEventEditor<ColliderGameObjectPair, ColliderGameObjectPairEvent>`. Only availble in `UNITY_2019_1_OR_NEWER`.
|
|
/// </summary>
|
|
[CustomEditor(typeof(ColliderGameObjectPairEvent))]
|
|
public sealed class ColliderGameObjectPairEventEditor : AtomEventEditor<ColliderGameObjectPair, ColliderGameObjectPairEvent> { }
|
|
}
|
|
#endif
|