unity-atoms/Packages/Mobile/Runtime/VariableInstancers/TouchUserInputVariableInstancer.cs

21 lines
788 B
C#
Raw Normal View History

2020-03-02 02:26:06 +01:00
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>
2020-03-02 02:26:06 +01:00
{ }
}