Exemple #1
0
 private void CheckPause(DialogPauseType flag)
 {
     if (flag != DialogPauseType.None && ShouldPause(flag))
     {
         PauseDialog();
     }
 }
Exemple #2
0
 private bool ShouldPause(DialogPauseType flag)
 {
     return(CurrentDialog.Property.HasFlag(DialogPauseType.End));
 }