rpcsx/rpcs3qt-legacy/fatal_error_dialog.h
2025-04-06 23:55:46 +03:00

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);
};