mirror of
https://github.com/vanilla-wiiu/vanilla.git
synced 2025-01-22 16:21:48 -05:00
13 lines
No EOL
230 B
C++
13 lines
No EOL
230 B
C++
#ifndef BACKEND_INIT_DIALOG_H
|
|
#define BACKEND_INIT_DIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
class BackendInitDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
BackendInitDialog(QWidget *parent = nullptr);
|
|
};
|
|
|
|
#endif // BACKEND_INIT_DIALOG_H
|