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

9 lines
237 B
C#
Raw Normal View History

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