You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
452 B
C++
27 lines
452 B
C++
#ifndef NBTMODIFIER_MAINWINDOW_H
|
|
#define NBTMODIFIER_MAINWINDOW_H
|
|
|
|
#include <QtWidgets/QMainWindow>
|
|
|
|
namespace Ui {
|
|
class MainWindow;
|
|
}
|
|
|
|
class MainWindow : public QMainWindow {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MainWindow(QWidget *parent = nullptr);
|
|
virtual ~MainWindow() override;
|
|
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
|
|
void setupUi();
|
|
|
|
private slots:
|
|
void on_actionHelpAboutNBTModifier_triggered();
|
|
};
|
|
|
|
#endif //NBTMODIFIER_MAINWINDOW_H
|