unity-atoms/Packages/Core/Runtime/Events/StringEvent.cs

9 lines
227 B
C#
Raw Normal View History

using UnityEngine;
namespace UnityAtoms
{
[UseIcon("atom-icon-cherry")]
[CreateAssetMenu(menuName = "Unity Atoms/Events/String", fileName = "StringEvent")]
public sealed class StringEvent : AtomEvent<string> { }
}