9 lines
244 B
C#
Raw Normal View History

2020-03-02 02:26:06 +01:00
namespace UnityAtoms.BaseAtoms
2018-10-30 20:05:06 +01:00
{
2019-10-15 22:29:05 +02:00
/// <summary>
/// Action of type `float`. Inherits from `AtomAction&lt;float&gt;`.
/// </summary>
2019-10-14 16:51:54 +02:00
[EditorIcon("atom-icon-purple")]
public abstract class FloatAction : AtomAction<float> { }
}