unity-atoms/Packages/Mobile/Runtime/References/TouchUserInputReference.cs
2019-10-15 21:10:57 +02:00

14 lines
374 B
C#

using System;
using UnityAtoms.Mobile;
namespace UnityAtoms.Mobile
{
/// <summary>
/// Reference of type `TouchUserInput`. Inherits from `AtomReference&lt;TouchUserInput, TouchUserInputVariable&gt;`.
/// </summary>
[Serializable]
public sealed class TouchUserInputReference : AtomReference<
TouchUserInput,
TouchUserInputVariable> { }
}