unity-atoms/Packages/Mobile/Runtime/Actions/TouchUserInputAction.cs
2019-10-15 03:07:22 +02:00

9 lines
277 B
C#

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> { }
}