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