unity-atoms/Source/Mobile/TouchUserInput/UnityTouchUserInputEvent.cs
Jeff Campbell e5f6659eda Removed unused namepaces
* Removed unused namespaces across all files in Unity.Atoms assembly.
* Removed unused namspaces in runtime and Test assembly code.
2019-04-07 11:15:23 +02:00

11 lines
304 B
C#

using System;
using UnityEngine.Events;
namespace UnityAtoms.Mobile
{
[Serializable]
public class UnityTouchUserInputEvent : UnityEvent<TouchUserInput> { }
[Serializable]
public class UnityTouchUserInputTouchUserInputEvent : UnityEvent<TouchUserInput, TouchUserInput> { }
}