unity-atoms/Packages/BaseAtoms/Runtime/Functions/StringFunction.cs

9 lines
280 B
C#
Raw Normal View History

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