mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
24 lines
235 B
C++
24 lines
235 B
C++
#pragma once
|
|
#include <QtGui>
|
|
|
|
class Editor;
|
|
|
|
|
|
class MapSpecifications: public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit MapSpecifications(QWidget *p = 0);
|
|
|
|
private:
|
|
Editor * editor;
|
|
QLineEdit *lineEdit;
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|