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

9 lines
250 B
C#

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