mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
12 lines
157 B
C
12 lines
157 B
C
|
|
#pragma once
|
|||
|
|
|
|||
|
|
#include <QMessageBox>
|
|||
|
|
|
|||
|
|
class fatal_error_dialog : public QMessageBox
|
|||
|
|
{
|
|||
|
|
Q_OBJECT
|
|||
|
|
|
|||
|
|
public:
|
|||
|
|
fatal_error_dialog(const std::string& text);
|
|||
|
|
};
|