Esempio n. 1
0
 private void HandleGameStart(StartGameResult startGameResult)
 {
     this.Activate();
     if (startGameResult == StartGameResult.Success)
     {
         return;
     }
     using (var dialog = new StartGameErrorDialog(startGameResult)) {
         dialog.ShowDialog();
     }
 }
Esempio n. 2
0
 private void HandleGameStart(StartGameResult startGameResult)
 {
     this.Activate();
     if (startGameResult == StartGameResult.Success)
         return;
     using (var dialog = new StartGameErrorDialog(startGameResult)) {
         dialog.ShowDialog();
     }
 }