2019-05-29 18:52:27 +02:00
|
|
|
using UnityEngine;
|
2019-10-15 21:10:57 +02:00
|
|
|
using UnityAtoms.Mobile;
|
2019-05-29 18:52:27 +02:00
|
|
|
|
|
|
|
namespace UnityAtoms.Mobile
|
|
|
|
{
|
2019-10-15 03:07:22 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Event of type `TouchUserInput`. Inherits from `AtomEvent<TouchUserInput>`.
|
|
|
|
/// </summary>
|
2019-10-14 16:51:54 +02:00
|
|
|
[EditorIcon("atom-icon-cherry")]
|
2019-05-29 18:52:27 +02:00
|
|
|
[CreateAssetMenu(menuName = "Unity Atoms/Events/TouchUserInput", fileName = "TouchUserInputEvent")]
|
2019-09-25 21:05:06 +02:00
|
|
|
public sealed class TouchUserInputEvent : AtomEvent<TouchUserInput> { }
|
2019-05-29 18:52:27 +02:00
|
|
|
}
|