mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 16:48:23 -05:00
10 lines
318 B
C#
10 lines
318 B
C#
using UnityAtoms.Mobile;
|
|
namespace UnityAtoms.Mobile
|
|
{
|
|
/// <summary>
|
|
/// Action of type `TouchUserInputPair`. Inherits from `AtomAction<TouchUserInputPair>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-purple")]
|
|
public abstract class TouchUserInputPairAction : AtomAction<TouchUserInputPair> { }
|
|
}
|