mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 17:17:47 -05:00
e5f6659eda
* Removed unused namespaces across all files in Unity.Atoms assembly. * Removed unused namspaces in runtime and Test assembly code.
11 lines
304 B
C#
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> { }
|
|
} |