unity-atoms/Packages/Core/Runtime/Actions/IntIntAction.cs

9 lines
243 B
C#
Raw Normal View History

namespace UnityAtoms
{
2019-10-15 16:32:06 -04:00
/// <summary>
/// Action x 2 of type `int`. Inherits from `AtomAction&lt;int, int&gt;`.
/// </summary>
2019-10-14 10:51:54 -04:00
[EditorIcon("atom-icon-purple")]
public abstract class IntIntAction : AtomAction<int, int> { }
}