Init commit

This commit is contained in:
2026-08-17 06:31:43 +09:00
commit 348d9275f6
428 changed files with 61806 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
#ifndef RENDER_WND_ADD_TEX_H
#define RENDER_WND_ADD_TEX_H
#include <QDialog>
#include "render_type_def.h"
class WndAddTex : public QDialog {
public:
struct ReturnData {
bool valid = false;
bool SRGB = true;
bool reverse_Y = false;
bool bpp_16 = false;
Z::TextureType textureType = Z::TextureType::NONE;
};
explicit WndAddTex(ReturnData &outData);
~WndAddTex() override;
private:
void OnSelectChanged(int index);
class WgtConfig;
ReturnData &m_outData;
WgtConfig *m_config;
};
#endif //RENDER_WND_ADD_TEX_H