1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-18 17:40:48 +02:00
vcmi/Editor/Editor.h
mateuszb f083db7c5a * map loading
* a bit of map spec window
2013-02-17 12:56:20 +00:00

32 lines
468 B
C++

#ifndef EDITOR_H
#define EDITOR_H
#include <QtWidgets/QMainWindow>
#include "ui_editor.h"
class CConsoleHandler;
class CMap;
class Editor : public QMainWindow
{
Q_OBJECT
public:
Editor(QWidget *parent = 0);
~Editor();
void createMenus();
std::unique_ptr<CMap> map;
private:
std::vector<std::string> txtEditor, txtEditorCmd;
std::ofstream * logfile;
CConsoleHandler * console;
Ui::EditorClass ui;
};
#endif // EDITOR_H