unity-atoms/Packages/BaseAtoms/Runtime/Functions/BoolFunction.cs
Adam Ramberg c3bc59259f More WIP
2020-03-02 02:26:06 +01:00

9 lines
266 B
C#

namespace UnityAtoms.BaseAtoms
{
/// <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> { }
}