9 lines
259 B
C#
Raw Normal View History

2020-03-02 02:26:06 +01:00
namespace UnityAtoms.BaseAtoms
{
/// <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> { }
}