1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/launcher/mainwindow_moc.h
Ivan Savenko 4287b2b7bb fixes for launcher, as discussed on forums:
- renamed files that should be preprocessed with moc: they will have _moc suffix (cpp files were also renamed for consistency)
- fixed disabling of mods that have dependent on them mods
- repositories will be reloaded if changed
- may have fixed non-starting vcmi client on Win
2013-08-24 20:11:51 +00:00

26 lines
353 B
C++

#pragma once
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class QTableWidgetItem;
class MainWindow : public QMainWindow
{
Q_OBJECT
void load();
void startExecutable(QString name);
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
void on_startGameButon_clicked();
private:
Ui::MainWindow *ui;
};