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

9 lines
238 B
C#

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