unity-atoms/Packages/Mobile/Editor/Drawers/Events/TouchUserInputPairEventDrawer.cs
Adam Ramberg c3bc59259f More WIP
2020-03-02 02:26:06 +01:00

14 lines
464 B
C#

#if UNITY_2019_1_OR_NEWER
using UnityEditor;
using UnityAtoms.Editor;
namespace UnityAtoms.Mobile.Editor
{
/// <summary>
/// Event property drawer of type `TouchUserInputPair`. Inherits from `AtomDrawer&lt;TouchUserInputPairEvent&gt;`. Only availble in `UNITY_2019_1_OR_NEWER`.
/// </summary>
[CustomPropertyDrawer(typeof(TouchUserInputPairEvent))]
public class TouchUserInputPairEventDrawer : AtomDrawer<TouchUserInputPairEvent> { }
}
#endif