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