unity-atoms/Packages/Mobile/Runtime/EventReferences/TouchUserInputEventReference.cs
Adam Ramberg c3bc59259f More WIP
2020-03-02 02:26:06 +01:00

18 lines
603 B
C#

using System;
using UnityAtoms.Mobile;
namespace UnityAtoms.Mobile
{
/// <summary>
/// Event Reference of type `TouchUserInput`. Inherits from `AtomEventReference&lt;TouchUserInput, TouchUserInputVariable, TouchUserInputEvent, TouchUserInputVariableInstancer, TouchUserInputEventInstancer&gt;`.
/// </summary>
[Serializable]
public sealed class TouchUserInputEventReference : AtomEventReference<
TouchUserInput,
TouchUserInputVariable,
TouchUserInputEvent,
TouchUserInputVariableInstancer,
TouchUserInputEventInstancer>, IGetEvent
{ }
}