#pragma warning restore 0067

    public void Raise()
    {
        // Debug.LogError($"{name} Scriptable Event Raised");
        OnRaise?.Invoke();
    }
Beispiel #2
0
#pragma warning restore 0067

    public void Raise(T data)
    {
        OnRaise?.Invoke(data);
    }
Beispiel #3
0
 public override void Raise(object data = null, object data2 = null, object data3 = null, object data4 = null)
 {
     OnRaise?.Invoke();
 }
Beispiel #4
0
 public void Raise() => OnRaise?.Invoke();