unity-atoms/Packages/Mobile/Runtime/References/TouchUserInputReference.cs
AdamRamberg 299dc195e2 - Added a top menu bar option to regenerate all existing Atoms. Nifty when developing the library.
- Added the option to use a Constant in Atom References. Related to #58
2019-10-16 18:02:08 +02:00

15 lines
430 B
C#

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