mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 16:18:24 -05:00
907cf70918
9 lines
280 B
C#
9 lines
280 B
C#
namespace UnityAtoms.BaseAtoms
|
|||
{
|
|||
/// <summary>
|
|||
/// Function x 2 of type `double`. Inherits from `AtomFunction<double, double>`.
|
|||
/// </summary>
|
|||
[EditorIcon("atom-icon-sand")]
|
|||
public abstract class DoubleDoubleFunction : AtomFunction<double, double> { }
|
|||
}
|