unity-atoms/Packages/Mobile/Runtime/UnityEvents/TouchUserInputUnityEvent.cs
2019-10-15 22:03:54 +02:00

13 lines
345 B
C#

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