mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-26 18:08:27 -05:00
10 lines
222 B
C#
10 lines
222 B
C#
using System;
|
|
using UnityEngine.Events;
|
|
using UnityAtoms;
|
|
|
|
namespace UnityAtoms.Mobile
|
|
{
|
|
[Serializable]
|
|
public sealed class TouchUserInputTouchUserInputUnityEvent : UnityEvent<TouchUserInput, TouchUserInput> { }
|
|
}
|