unity-atoms/Packages/Mobile/Runtime/Actions/TouchUserInputAction.cs
Adam Ramberg c3bc59259f More WIP
2020-03-02 02:26:06 +01: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> { }
}