unity-atoms/Packages/Mobile/Runtime/Actions/TouchUserInputAction.cs
2019-10-15 21:10:57 +02:00

10 lines
302 B
C#

using UnityAtoms.Mobile;
namespace UnityAtoms.Mobile
{
/// <summary>
/// Action of type `TouchUserInput`. Inherits from `AtomAction&lt;TouchUserInput&gt;`.
/// </summary>
[EditorIcon("atom-icon-purple")]
public abstract class TouchUserInputAction : AtomAction<TouchUserInput> { }
}