mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-18 17:40:48 +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
|