unity-atoms/Packages/Mobile/Runtime/Lists/TouchUserInputList.cs

13 lines
456 B
C#
Raw Normal View History

using UnityEngine;
2019-10-15 21:10:57 +02:00
using UnityAtoms.Mobile;
namespace UnityAtoms.Mobile
{
2019-10-15 03:07:22 +02:00
/// <summary>
/// List of type `TouchUserInput`. Inherits from `AtomList&lt;TouchUserInput, TouchUserInputEvent&gt;`.
/// </summary>
2019-10-14 16:51:54 +02:00
[EditorIcon("atom-icon-piglet")]
[CreateAssetMenu(menuName = "Unity Atoms/Lists/TouchUserInput", fileName = "TouchUserInputList")]
public sealed class TouchUserInputList : AtomList<TouchUserInput, TouchUserInputEvent> { }
}