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

9 lines
243 B
C#

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