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

9 lines
234 B
C#

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