mkRPG
src/editor/GUI/newgame.h
Go to the documentation of this file.
00001 #ifndef NEWGAME_H
00002 #define NEWGAME_H
00003 
00004 #include "ui_newgame.h"
00005 #include <QtWidgets>
00006 
00007 
00008 
00020 class NewGame : public QDialog, private Ui::NewGame
00021 {
00022     Q_OBJECT
00023 
00024 public:
00025     explicit NewGame(QWidget *parent = 0);
00026 
00027     QString name() const;
00028     QString folder() const;
00029     bool createFolder() const;
00030 
00031 private slots:
00032     void on_browse_clicked();
00033 };
00034 
00035 #endif // NEWGAME_H
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Properties Defines