mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 08:38:23 -05:00
28 lines
1.1 KiB
C#
28 lines
1.1 KiB
C#
|
using System;
|
||
|
using UnityAtoms.BaseAtoms;
|
||
|
using UnityAtoms.Mobile;
|
||
|
|
||
|
namespace UnityAtoms.Mobile
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Reference of type `TouchUserInput`. Inherits from `EquatableAtomReference<TouchUserInput, TouchUserInputPair, TouchUserInputConstant, TouchUserInputVariable, TouchUserInputEvent, TouchUserInputPairEvent, TouchUserInputTouchUserInputFunction, TouchUserInputVariableInstancer>`.
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
public sealed class TouchUserInputReference : EquatableAtomReference<
|
||
|
TouchUserInput,
|
||
|
TouchUserInputPair,
|
||
|
TouchUserInputConstant,
|
||
|
TouchUserInputVariable,
|
||
|
TouchUserInputEvent,
|
||
|
TouchUserInputPairEvent,
|
||
|
TouchUserInputTouchUserInputFunction,
|
||
|
TouchUserInputVariableInstancer,
|
||
|
AtomCollection,
|
||
|
AtomList>, IEquatable<TouchUserInputReference>
|
||
|
{
|
||
|
public TouchUserInputReference() : base() { }
|
||
|
public TouchUserInputReference(TouchUserInput value) : base(value) { }
|
||
|
public bool Equals(TouchUserInputReference other) { return base.Equals(other); }
|
||
|
}
|
||
|
}
|