9 lines
230 B
C#
Raw Normal View History

using UnityEngine;
namespace UnityAtoms
{
2019-10-14 16:51:54 +02:00
[EditorIcon("atom-icon-cherry")]
[CreateAssetMenu(menuName = "Unity Atoms/Events/String", fileName = "StringEvent")]
public sealed class StringEvent : AtomEvent<string> { }
}