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