unity-atoms/Packages/Mobile/Runtime/VariableInstancers/TouchUserInputVariableInstancer.cs
2020-03-19 08:39:43 +01:00

21 lines
788 B
C#

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