unity-atoms/Packages/Mobile/Runtime/EventInstancers/TouchUserInputPairEventInstancer.cs

13 lines
505 B
C#
Raw Normal View History

2020-03-02 02:26:06 +01:00
using UnityEngine;
using UnityAtoms.Mobile;
namespace UnityAtoms.Mobile
{
/// <summary>
/// Event Instancer of type `TouchUserInputPair`. Inherits from `AtomEventInstancer&lt;TouchUserInputPair, TouchUserInputPairEvent&gt;`.
/// </summary>
[EditorIcon("atom-icon-sign-blue")]
[AddComponentMenu("Unity Atoms/Event Instancers/TouchUserInputPair Event Instancer")]
public class TouchUserInputPairEventInstancer : AtomEventInstancer<TouchUserInputPair, TouchUserInputPairEvent> { }
}