1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 19:49:54 +00:00
openmw-tes3mp/apps/launcher/maindialog.h
2011-03-29 01:36:26 +02:00

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