unity-atoms/Packages/Mobile/Editor/Editors/Events/TouchUserInputTouchUserInputEventEditor.cs
Adam Ramberg 6309943385
Replay subject (#114)
* Add constructor with value to Reference classes

* Implemented ReplayBehaviour for AtomEvents
2020-02-23 21:44:04 +01:00

16 lines
638 B
C#

#if UNITY_2019_1_OR_NEWER
using UnityEditor;
using UnityEngine.UIElements;
using UnityAtoms.Mobile;
using UnityAtoms.Editor;
namespace UnityAtoms.Mobile.Editor
{
/// <summary>
/// Event property drawer of type `&lt;TouchUserInput, TouchUserInput&gt;`. Inherits from `AtomEventEditor&lt;TouchUserInput, TouchUserInput, TouchUserInputEvent&gt;`. Only availble in `UNITY_2019_1_OR_NEWER`.
/// </summary>
[CustomEditor(typeof(TouchUserInputTouchUserInputEvent))]
public sealed class TouchUserInputTouchUserInputEventEditor : AtomEventEditor<TouchUserInput, TouchUserInput, TouchUserInputTouchUserInputEvent> { }
}
#endif