unity-atoms/Source/Variables/TouchUserInputVariable.cs
2019-09-25 21:05:06 +02:00

15 lines
386 B
C#

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