mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-26 18:08:27 -05:00
13 lines
678 B
C#
13 lines
678 B
C#
using UnityEngine;
|
|
using UnityAtoms.Mobile;
|
|
|
|
namespace UnityAtoms.Mobile
|
|
{
|
|
/// <summary>
|
|
/// Variable Instancer of type `TouchUserInput`. Inherits from `AtomVariableInstancer<TouchUserInputVariable, TouchUserInput, TouchUserInputEvent, TouchUserInputTouchUserInputEvent, TouchUserInputTouchUserInputFunction>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-hotpink")]
|
|
[AddComponentMenu("Unity Atoms/Variable Instancers/TouchUserInput Instancer")]
|
|
public class TouchUserInputVariableInstancer : AtomVariableInstancer<TouchUserInputVariable, TouchUserInput, TouchUserInputEvent, TouchUserInputTouchUserInputEvent, TouchUserInputTouchUserInputFunction> { }
|
|
}
|