Miika Lönnqvist 8f6392c373
#52 Basic implementation of conditions for listeners (#191)
* Basic implementation of conditions for listeners

* Tweak code style and add generated Conditions
2020-11-06 22:11:16 +01:00

8 lines
257 B
C#

namespace UnityAtoms.BaseAtoms
{
/// <summary>
/// Condition of type `string`. Inherits from `AtomCondition&lt;string&gt;`.
/// </summary>
[EditorIcon("atom-icon-teal")]
public abstract class StringCondition : AtomCondition<string> { }
}