mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-27 10:28:24 -05:00
13 lines
456 B
C#
13 lines
456 B
C#
using UnityEngine;
|
|
using UnityAtoms.Mobile;
|
|
|
|
namespace UnityAtoms.Mobile
|
|
{
|
|
/// <summary>
|
|
/// List of type `TouchUserInput`. Inherits from `AtomList<TouchUserInput, TouchUserInputEvent>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-piglet")]
|
|
[CreateAssetMenu(menuName = "Unity Atoms/Lists/TouchUserInput", fileName = "TouchUserInputList")]
|
|
public sealed class TouchUserInputList : AtomList<TouchUserInput, TouchUserInputEvent> { }
|
|
}
|