mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-27 10:28:24 -05:00
16 lines
509 B
C#
16 lines
509 B
C#
|
#if UNITY_2019_1_OR_NEWER
|
||
|
using UnityEditor;
|
||
|
using UnityEngine.UIElements;
|
||
|
using UnityAtoms.Editor;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace UnityAtoms.BaseAtoms.Editor
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Event property drawer of type `Collider2D`. Inherits from `AtomEventEditor<Collider2D, Collider2DEvent>`. Only availble in `UNITY_2019_1_OR_NEWER`.
|
||
|
/// </summary>
|
||
|
[CustomEditor(typeof(Collider2DEvent))]
|
||
|
public sealed class Collider2DEventEditor : AtomEventEditor<Collider2D, Collider2DEvent> { }
|
||
|
}
|
||
|
#endif
|