unity-atoms/Packages/Core/Runtime/Actions/StringStringAction.cs
2019-10-15 22:33:06 +02:00

9 lines
264 B
C#

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