tools/drawMapTest/mainwindow.h
author mikade
Sat, 13 Apr 2013 19:31:31 +0200
branch0.9.19
changeset 8877 928050d58c2b
parent 4477 63a21fac8bf7
permissions -rw-r--r--
remove delays from "one of everything" weaponset it doesn't make sense to have the default delays on stuff like baseball bat, cake etc. when you can just use melons/hellish grenades etc. straight from the go

#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