mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 17:17:47 -05:00
14 lines
431 B
C#
14 lines
431 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace UnityAtoms.Mobile
|
||
|
{
|
||
|
[CreateAssetMenu(menuName = "Unity Atoms/Actions/Set Variable Value/TouchUserInput", fileName = "SetTouchUserInputVariableValue")]
|
||
|
public sealed class SetTouchUserInputVariableValue : SetVariableValue<
|
||
|
TouchUserInput,
|
||
|
TouchUserInputVariable,
|
||
|
TouchUserInputReference,
|
||
|
TouchUserInputEvent,
|
||
|
TouchUserInputTouchUserInputEvent>
|
||
|
{ }
|
||
|
}
|