Ejemplo n.º 1
0
 public bool ExecuteAction(GameContext context, List<MJsonMessageAll> msg)
 {
     return context.OnStartKyoku();
 }
Ejemplo n.º 2
0
 public bool ExecuteAction(GameContext context, List<MJsonMessageAll> msgList)
 {
     if (context.OnCheckIsEndGame())
     {
         return context.OnEndGame();
     }
     else
     {
         return context.OnStartKyoku();
     }
 }