unity-atoms/Packages/Core/Runtime/Actions/BoolAction.cs
2019-10-15 22:23:46 +02:00

9 lines
230 B
C#

namespace UnityAtoms
{
/// <summary>
/// Action of type `bool`. Inherits from `AtomAction&lt;bool&gt;`.
/// </summary>
[EditorIcon("atom-icon-purple")]
public abstract class BoolAction : AtomAction<bool> { }
}