unity-atoms/Packages/BaseAtoms/Runtime/Actions/FloatPairAction.cs

9 lines
260 B
C#
Raw Normal View History

2020-03-01 20:26:06 -05:00
namespace UnityAtoms.BaseAtoms
{
/// <summary>
/// Action of type `FloatPair`. Inherits from `AtomAction&lt;FloatPair&gt;`.
/// </summary>
[EditorIcon("atom-icon-purple")]
public abstract class FloatPairAction : AtomAction<FloatPair> { }
}