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

13 lines
456 B
C#

using UnityEngine;
using UnityAtoms.Mobile;
namespace UnityAtoms.Mobile
{
/// <summary>
/// List of type `TouchUserInput`. Inherits from `AtomList&lt;TouchUserInput, TouchUserInputEvent&gt;`.
/// </summary>
[EditorIcon("atom-icon-piglet")]
[CreateAssetMenu(menuName = "Unity Atoms/Lists/TouchUserInput", fileName = "TouchUserInputList")]
public sealed class TouchUserInputList : AtomList<TouchUserInput, TouchUserInputEvent> { }
}