ProjectDDD/Assets/_DDD/_Scripts/GameFlow/IGameFlowHandler.cs
2025-08-12 20:46:30 +09:00

10 lines
233 B
C#

using System.Threading.Tasks;
namespace DDD
{
public interface IGameFlowHandler
{
public Task OnReadyNewFlow(GameFlowState newFlowState);
public Task OnExitCurrentFlow(GameFlowState exitingFlowState);
}
}