GuildTycoon/Assets/_/Features/EventSystem/Runtime/PanelSignals.cs
2025-09-06 23:56:47 +02:00

15 lines
294 B
C#

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);
}
}
}