migration from new repo
This commit is contained in:
commit
423134a840
26930 changed files with 3458568 additions and 0 deletions
15
Assets/_/Features/EventSystem/Runtime/PanelSignals.cs
Normal file
15
Assets/_/Features/EventSystem/Runtime/PanelSignals.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
using UnityEngine;
|
||||
|
||||
namespace EventSystem.Runtime
|
||||
{
|
||||
public static class PanelSignals
|
||||
{
|
||||
public static event System.Action<string> OnRefresh;
|
||||
|
||||
public static void RaiseRefresh(string panelName)
|
||||
{
|
||||
OnRefresh?.Invoke(panelName);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue