mirror of
https://github.com/TheGameratorT/NitroModel_ConverterGUI.git
synced 2025-06-18 13:45:36 -04:00
32 lines
551 B
C++
32 lines
551 B
C++
#ifndef TEXTUREDNSBMDTONSBTX_H
|
|
#define TEXTUREDNSBMDTONSBTX_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
namespace Ui {
|
|
class TexturedNSBMDToNSBTX;
|
|
}
|
|
|
|
class TexturedNSBMDToNSBTX : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TexturedNSBMDToNSBTX(QWidget *parent = nullptr);
|
|
~TexturedNSBMDToNSBTX();
|
|
|
|
private slots:
|
|
void on_searchPath1_pb_clicked();
|
|
|
|
void on_seachPath2_pb_clicked();
|
|
|
|
void on_convert_pb_clicked();
|
|
|
|
private:
|
|
Ui::TexturedNSBMDToNSBTX *ui;
|
|
|
|
void printToConsole(const QString &text);
|
|
};
|
|
|
|
#endif // TEXTUREDNSBMDTONSBTX_H
|