unity-atoms/Packages/Mobile/Runtime/Events/TouchUserInputPairEvent.cs
Adam Ramberg c3bc59259f More WIP
2020-03-02 02:26:06 +01:00

13 lines
444 B
C#

using UnityEngine;
using UnityAtoms.Mobile;
namespace UnityAtoms.Mobile
{
/// <summary>
/// Event of type `TouchUserInputPair`. Inherits from `AtomEvent&lt;TouchUserInputPair&gt;`.
/// </summary>
[EditorIcon("atom-icon-cherry")]
[CreateAssetMenu(menuName = "Unity Atoms/Events/TouchUserInputPair", fileName = "TouchUserInputPairEvent")]
public sealed class TouchUserInputPairEvent : AtomEvent<TouchUserInputPair> { }
}