2019-10-02 17:36:20 +02:00
|
|
|
#if UNITY_2019_1_OR_NEWER
|
|
|
|
using UnityEditor;
|
2020-03-05 00:48:39 +01:00
|
|
|
using UnityAtoms.Editor;
|
2019-10-02 17:36:20 +02:00
|
|
|
|
2020-03-05 00:48:39 +01:00
|
|
|
namespace UnityAtoms.BaseAtoms.Editor
|
2019-10-02 17:36:20 +02:00
|
|
|
{
|
2019-10-15 22:37:15 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Event property drawer of type `Void`. Inherits from `AtomDrawer<VoidEvent>`. Only availble in `UNITY_2019_1_OR_NEWER`.
|
|
|
|
/// </summary>
|
2019-10-02 17:36:20 +02:00
|
|
|
[CustomPropertyDrawer(typeof(VoidEvent))]
|
|
|
|
public class VoidEventDrawer : AtomDrawer<VoidEvent> { }
|
|
|
|
}
|
|
|
|
#endif
|