mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-01 22:30:08 +01:00
14 lines
223 B
C++
14 lines
223 B
C++
#pragma once
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <string_view>
|
|
|
|
class fatal_error_dialog : public QMessageBox
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit fatal_error_dialog(std::string_view text, bool is_html, bool include_help_text);
|
|
};
|