unity-atoms/Packages/Mobile/Runtime/Variables/TouchUserInputVariable.cs
2019-10-15 21:10:57 +02:00

13 lines
566 B
C#

using UnityEngine;
using UnityAtoms.Mobile;
namespace UnityAtoms.Mobile
{
/// <summary>
/// Variable of type `TouchUserInput`. Inherits from `EquatableAtomVariable&lt;TouchUserInput, TouchUserInputEvent, TouchUserInputTouchUserInputEvent&gt;`.
/// </summary>
[EditorIcon("atom-icon-lush")]
[CreateAssetMenu(menuName = "Unity Atoms/Variables/TouchUserInput", fileName = "TouchUserInputVariable")]
public sealed class TouchUserInputVariable : EquatableAtomVariable<TouchUserInput, TouchUserInputEvent, TouchUserInputTouchUserInputEvent> { }
}