mirror of
https://github.com/vcmi/vcmi.git
synced 2025-03-11 14:49:23 +02:00
23 lines
285 B
C++
23 lines
285 B
C++
#ifndef MAPSETTINGS_H
|
|
#define MAPSETTINGS_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class MapSettings;
|
|
}
|
|
|
|
class MapSettings : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MapSettings(QWidget *parent = nullptr);
|
|
~MapSettings();
|
|
|
|
private:
|
|
Ui::MapSettings *ui;
|
|
};
|
|
|
|
#endif // MAPSETTINGS_H
|