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

9 lines
263 B
C#
Raw Normal View History

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