unity-atoms/Packages/Mobile/Runtime/Variables/TouchUserInputVariable.cs
2019-10-01 17:27:22 +02:00

16 lines
404 B
C#

using System;
using UnityEngine;
using UnityEngine.Serialization;
using UnityAtoms;
namespace UnityAtoms.Mobile
{
[CreateAssetMenu(menuName = "Unity Atoms/Variables/TouchUserInput", fileName = "TouchUserInputVariable")]
public sealed class TouchUserInputVariable : EquatableAtomVariable<
TouchUserInput,
TouchUserInputEvent,
TouchUserInputTouchUserInputEvent>
{ }
}