using UnityEngine.Events;
using UnityEngine;
///
/// This class is used for Events that have a bool argument.
/// Example: An event to toggle a UI interface
///
[CreateAssetMenu(menuName = "Events/Bool Event Channel")]
public class BoolEventChannelSO : DescriptionBaseSO
{
public event UnityAction OnEventRaised;
public void RaiseEvent(bool value)
{
if (OnEventRaised != null)
OnEventRaised.Invoke(value);
}
}