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

13 lines
395 B
C#

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