mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 19:49:54 +00:00
25 lines
340 B
C++
25 lines
340 B
C++
#ifndef MAINDIALOG_H
|
|
#define MAINDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QProcess>
|
|
|
|
class MainDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MainDialog();
|
|
|
|
QProcess *openmw;
|
|
|
|
public slots:
|
|
|
|
void start();
|
|
void showDataFiles();
|
|
void showSettings();
|
|
void finished(int, QProcess::ExitStatus exitStatus);
|
|
|
|
};
|
|
|
|
#endif
|