mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-30 20:02:49 -05:00
8f6392c373
* Basic implementation of conditions for listeners * Tweak code style and add generated Conditions
8 lines
257 B
C#
8 lines
257 B
C#
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// Condition of type `string`. Inherits from `AtomCondition<string>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-teal")]
|
|
public abstract class StringCondition : AtomCondition<string> { }
|
|
} |