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

12 lines
357 B
C#

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