1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00
OpenMW/apps/launcher/maindialog.h
2011-03-29 01:36:26 +02:00

26 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