Example #1
0
 public static void StartGame(this ChessPlayer chessPlayer, Actor_StartGame actor_StartGame)
 {
     chessPlayer.SendGateStartGame();
     chessPlayer.SendMessageUser(actor_StartGame);
 }
Example #2
0
 public static void SendGateStartGame(this ChessPlayer chessPlayer)
 {
     chessPlayer.SendMessageUser(new Actor_UserStartGame {
         SessionActorId = chessPlayer.Id
     });
 }