unity-atoms/Packages/Core/Runtime/Functions/BoolBoolFunction.cs

9 lines
256 B
C#
Raw Normal View History

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