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

12 lines
431 B
C#
Raw Normal View History

using UnityEngine;
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> { }
}