mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-30 20:02:49 -05:00
18 lines
635 B
C#
18 lines
635 B
C#
|
using System;
|
||
|
using UnityAtoms.Mobile;
|
||
|
|
||
|
namespace UnityAtoms.Mobile
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Event Reference of type `TouchUserInputPair`. Inherits from `AtomEventReference<TouchUserInputPair, TouchUserInputVariable, TouchUserInputPairEvent, TouchUserInputVariableInstancer, TouchUserInputPairEventInstancer>`.
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
public sealed class TouchUserInputPairEventReference : AtomEventReference<
|
||
|
TouchUserInputPair,
|
||
|
TouchUserInputVariable,
|
||
|
TouchUserInputPairEvent,
|
||
|
TouchUserInputVariableInstancer,
|
||
|
TouchUserInputPairEventInstancer>, IGetEvent
|
||
|
{ }
|
||
|
}
|