unity-atoms/Packages/Mobile/Runtime/VariableInstancers/TouchUserInputVariableInstancer.cs
2020-02-23 23:13:30 +01:00

13 lines
678 B
C#

using UnityEngine;
using UnityAtoms.Mobile;
namespace UnityAtoms.Mobile
{
/// <summary>
/// Variable Instancer of type `TouchUserInput`. Inherits from `AtomVariableInstancer&lt;TouchUserInputVariable, TouchUserInput, TouchUserInputEvent, TouchUserInputTouchUserInputEvent, TouchUserInputTouchUserInputFunction&gt;`.
/// </summary>
[EditorIcon("atom-icon-hotpink")]
[AddComponentMenu("Unity Atoms/Variable Instancers/TouchUserInput Instancer")]
public class TouchUserInputVariableInstancer : AtomVariableInstancer<TouchUserInputVariable, TouchUserInput, TouchUserInputEvent, TouchUserInputTouchUserInputEvent, TouchUserInputTouchUserInputFunction> { }
}