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