mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 16:18:24 -05:00
8f6392c373
* Basic implementation of conditions for listeners * Tweak code style and add generated Conditions
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> { }
|
|
} |