2025-07-17 06:20:30 +00:00
|
|
|
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);
|
2025-07-17 06:20:30 +00:00
|
|
|
}
|
|
|
|
|
}
|