public static IEnumerator WaitForDialog(this IGDPRDialog dialog) { dialog.ShowDialog(null); while (IsDialogVisible) { yield return(null); } }
public static void ShowDialog(this IGDPRDialog dialog, DialogClosedDelegate onDialogClosed = null) { dialog.ShowDialog(onDialogClosed); }