unity-atoms/Packages/Core/Runtime/Actions/IntAction.cs
2019-10-15 22:32:06 +02:00

9 lines
226 B
C#

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