tools/hwmap2txt/hwmapconverter/mainwindow.h
author Wuzzy <Wuzzy2@mail.ru>
Tue, 28 Aug 2018 03:45:44 +0200
changeset 13709 e2b1abb4fba5
parent 11015 7a905f0070ce
permissions -rw-r--r--
Space Invasion: refactor variables into a large table for everything To fix that annoying "upvalue" error if more variables are added

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    explicit MainWindow(QWidget *parent = 0);
    ~MainWindow();

private slots:
    void on_pbLoad_clicked();

    void on_pbSave_clicked();

private:
    Ui::MainWindow *ui;
};

#endif // MAINWINDOW_H