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

13 lines
361 B
C#

using System;
using UnityEngine.Events;
using UnityAtoms.Mobile;
namespace UnityAtoms.Mobile
{
/// <summary>
/// None generic Unity Event of type `TouchUserInputPair`. Inherits from `UnityEvent&lt;TouchUserInputPair&gt;`.
/// </summary>
[Serializable]
public sealed class TouchUserInputPairUnityEvent : UnityEvent<TouchUserInputPair> { }
}