using System; using UnityAtoms.BaseAtoms; using UnityAtoms.Mobile; namespace UnityAtoms.Mobile { /// /// Reference of type `TouchUserInput`. Inherits from `EquatableAtomReference<TouchUserInput, TouchUserInputPair, TouchUserInputConstant, TouchUserInputVariable, TouchUserInputEvent, TouchUserInputPairEvent, TouchUserInputTouchUserInputFunction, TouchUserInputVariableInstancer, AtomCollection, AtomList>`. /// [Serializable] public sealed class TouchUserInputReference : EquatableAtomReference< TouchUserInput, TouchUserInputPair, TouchUserInputConstant, TouchUserInputVariable, TouchUserInputEvent, TouchUserInputPairEvent, TouchUserInputTouchUserInputFunction, TouchUserInputVariableInstancer>, IEquatable { public TouchUserInputReference() : base() { } public TouchUserInputReference(TouchUserInput value) : base(value) { } public bool Equals(TouchUserInputReference other) { return base.Equals(other); } } }