2020-03-01 20:26:06 -05:00
|
|
|
using System;
|
|
|
|
using UnityAtoms.BaseAtoms;
|
|
|
|
using UnityAtoms.Mobile;
|
|
|
|
|
|
|
|
namespace UnityAtoms.Mobile
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-03-08 19:37:52 -04:00
|
|
|
/// Reference of type `TouchUserInput`. Inherits from `EquatableAtomReference<TouchUserInput, TouchUserInputPair, TouchUserInputConstant, TouchUserInputVariable, TouchUserInputEvent, TouchUserInputPairEvent, TouchUserInputTouchUserInputFunction, TouchUserInputVariableInstancer, AtomCollection, AtomList>`.
|
2020-03-01 20:26:06 -05:00
|
|
|
/// </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); }
|
|
|
|
}
|
|
|
|
}
|