2019-10-01 23:26:25 +02:00
|
|
|
using UnityEngine;
|
2019-10-15 21:10:57 +02:00
|
|
|
using UnityAtoms.Mobile;
|
2019-10-01 23:26:25 +02:00
|
|
|
|
|
|
|
namespace UnityAtoms.Mobile
|
|
|
|
{
|
2019-10-15 03:07:22 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Constant of type `TouchUserInput`. Inherits from `AtomBaseVariable<TouchUserInput>`.
|
|
|
|
/// </summary>
|
2019-10-14 16:51:54 +02:00
|
|
|
[EditorIcon("atom-icon-teal")]
|
2019-10-01 23:26:25 +02:00
|
|
|
[CreateAssetMenu(menuName = "Unity Atoms/Constants/TouchUserInput", fileName = "TouchUserInputConstant")]
|
|
|
|
public sealed class TouchUserInputConstant : AtomBaseVariable<TouchUserInput> { }
|
|
|
|
}
|