unity-atoms/Packages/Core/Runtime/Functions/IntIntFunction.cs

9 lines
249 B
C#
Raw Normal View History

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