mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-31 13:50:46 +01: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);
|
|
};
|