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.
22 lines
353 B
C++
22 lines
353 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);
|
|
~MainWindow() override;
|
|
|
|
private:
|
|
Ui::MainWindow *m_ui;
|
|
};
|
|
|
|
#endif //NBTMODIFIER_MAINWINDOW_H
|