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

9 lines
219 B
C#
Raw Normal View History

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