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
249 B
C#

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