mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-31 04:12:52 -05:00
9 lines
248 B
C#
9 lines
248 B
C#
namespace UnityAtoms.BaseAtoms
|
|||
{
|
|||
/// <summary>
|
|||
/// Action of type `double`. Inherits from `AtomAction<double>`.
|
|||
/// </summary>
|
|||
[EditorIcon("atom-icon-purple")]
|
|||
public abstract class DoubleAction : AtomAction<double> { }
|
|||
}
|