unity-atoms/Packages/Mobile/Runtime/References/TouchUserInputReference.cs
2020-03-19 08:39:43 +01:00

26 lines
1.1 KiB
C#

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