unity-atoms/Packages/BaseAtoms/Runtime/Actions/StringAction.cs
Adam Ramberg c3bc59259f More WIP
2020-03-02 02:26:06 +01:00

9 lines
248 B
C#

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