mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 16:18:24 -05:00
9 lines
311 B
C#
9 lines
311 B
C#
|
using UnityAtoms.Mobile;
|
||
|
namespace UnityAtoms.Mobile
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Condition of type `TouchUserInput`. Inherits from `AtomCondition<TouchUserInput>`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-teal")]
|
||
|
public abstract class TouchUserInputCondition : AtomCondition<TouchUserInput> { }
|
||
|
}
|