tools/drawMapTest/mainwindow.h
author Wuzzy <Wuzzy2@mail.ru>
Thu, 15 Feb 2018 21:47:31 +0100
changeset 13013 4234a18a082c
parent 4477 63a21fac8bf7
permissions -rw-r--r--
Fix hittig precise+rottags the first time when all tags started off showing health tag in gfInvulnerable

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>

namespace Ui {
    class MainWindow;
}

class DrawMapScene;

class MainWindow : public QMainWindow {
    Q_OBJECT
public:
    MainWindow(QWidget *parent = 0);
    ~MainWindow();

protected:
    void changeEvent(QEvent *e);

private:
    Ui::MainWindow *ui;
    DrawMapScene * scene;

private slots:
    void on_pbLoad_clicked();
    void on_pbSave_clicked();
    void scene_pathChanged();
};

#endif // MAINWINDOW_H