mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
25 lines
360 B
C++
25 lines
360 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
#include "mapcontroller.h"
|
|
|
|
namespace Ui {
|
|
class MapSettings;
|
|
}
|
|
|
|
class MapSettings : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MapSettings(MapController & controller, QWidget *parent = nullptr);
|
|
~MapSettings();
|
|
|
|
private slots:
|
|
void on_pushButton_clicked();
|
|
|
|
private:
|
|
Ui::MapSettings *ui;
|
|
MapController & controller;
|
|
};
|