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

9 lines
273 B
C#
Raw Normal View History

2020-03-01 20:26:06 -05:00
namespace UnityAtoms.BaseAtoms
{
/// <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> { }
}