mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 00:28:23 -05:00
21 lines
788 B
C#
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<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>
|
|
{ }
|
|
}
|