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

12 lines
307 B
C#

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