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

9 lines
270 B
C#
Raw Normal View History

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