// Token: 0x06000DDD RID: 3549 RVA: 0x0005FDE8 File Offset: 0x0005DFE8
    public static IPopupDialog ShowError(string title, string text, PopupSystem.AlertType flag)
    {
        IPopupDialog popupDialog = new GeneralPopupDialog(title, text, flag, true);

        PopupSystem.Show(popupDialog);
        return(popupDialog);
    }
    // Token: 0x06000DD7 RID: 3543 RVA: 0x0005FD48 File Offset: 0x0005DF48
    public static IPopupDialog ShowMessage(string title, string text, PopupSystem.AlertType flag, string okCaption, Action ok)
    {
        IPopupDialog popupDialog = new GeneralPopupDialog(title, text, flag, ok, okCaption, true);

        PopupSystem.Show(popupDialog);
        return(popupDialog);
    }
    // Token: 0x06000DDB RID: 3547 RVA: 0x0005FDC8 File Offset: 0x0005DFC8
    public static IPopupDialog ShowMessage(string title, string text)
    {
        IPopupDialog popupDialog = new GeneralPopupDialog(title, text, PopupSystem.AlertType.OK, true);

        PopupSystem.Show(popupDialog);
        return(popupDialog);
    }