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