ProjectDDD/Assets/_DDD/_Scripts/GameFlow/IGameFlowHandler.cs

10 lines
233 B
C#
Raw Normal View History

using System.Threading.Tasks;
namespace DDD
{
public interface IGameFlowHandler
{
public Task OnReadyNewFlow(GameFlowState newFlowState);
2025-08-12 11:46:30 +00:00
public Task OnExitCurrentFlow(GameFlowState exitingFlowState);
}
}