unity-atoms/Packages/Core/Runtime/Actions/FloatFloatAction.cs
2019-10-15 22:29:05 +02:00

9 lines
257 B
C#

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