mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 14:08:37 +00:00
13 lines
185 B
C++
13 lines
185 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);
|
|
};
|