示例#1
0
        public void StartGame(int gameSessionId)
        {
            var        gameSession = gameSessionService.GetGameSessionById(gameSessionId);
            Playground playground  = new Playground(gameSession);

            playground.Show();
            UserProfile.CurrentForm.CloseForm();
        }
示例#2
0
 public GameSession GetGameSessionById(int gameSessionId)
 {
     try
     {
         return(gameSessionService.GetGameSessionById(gameSessionId));
     }
     catch (Exception ex)
     {
         throw;
     }
 }