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