9 lines
162 B
C#
9 lines
162 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace DDD
|
|
{
|
|
public interface IGameFlowHandler
|
|
{
|
|
public Task OnReadyNewFlow(GameFlowState newFlowState);
|
|
}
|
|
} |