mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-30 20:02:49 -05:00
23 lines
830 B
C#
23 lines
830 B
C#
|
using UnityEngine;
|
||
|
using UnityAtoms.BaseAtoms;
|
||
|
using UnityAtoms.Mobile;
|
||
|
|
||
|
namespace UnityAtoms.Mobile
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Variable Instancer of type `TouchUserInput`. Inherits from `AtomVariableInstancer<TouchUserInputVariable, TouchUserInputPair, TouchUserInput, TouchUserInputEvent, TouchUserInputPairEvent, TouchUserInputTouchUserInputFunction>`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-hotpink")]
|
||
|
[AddComponentMenu("Unity Atoms/Variable Instancers/TouchUserInput Variable Instancer")]
|
||
|
public class TouchUserInputVariableInstancer : AtomVariableInstancer<
|
||
|
TouchUserInputVariable,
|
||
|
TouchUserInputPair,
|
||
|
TouchUserInput,
|
||
|
TouchUserInputEvent,
|
||
|
TouchUserInputPairEvent,
|
||
|
TouchUserInputTouchUserInputFunction,
|
||
|
AtomCollection,
|
||
|
AtomList>
|
||
|
{ }
|
||
|
}
|