mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 08:38:23 -05:00
18 lines
603 B
C#
18 lines
603 B
C#
|
using System;
|
||
|
using UnityAtoms.Mobile;
|
||
|
|
||
|
namespace UnityAtoms.Mobile
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Event Reference of type `TouchUserInput`. Inherits from `AtomEventReference<TouchUserInput, TouchUserInputVariable, TouchUserInputEvent, TouchUserInputVariableInstancer, TouchUserInputEventInstancer>`.
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
public sealed class TouchUserInputEventReference : AtomEventReference<
|
||
|
TouchUserInput,
|
||
|
TouchUserInputVariable,
|
||
|
TouchUserInputEvent,
|
||
|
TouchUserInputVariableInstancer,
|
||
|
TouchUserInputEventInstancer>, IGetEvent
|
||
|
{ }
|
||
|
}
|