XPlor/app/ddsviewer.h

29 lines
454 B
C
Raw Normal View History

2025-09-05 19:45:44 +00:00
#ifndef DDSVIEWER_H
#define DDSVIEWER_H
#include <QWidget>
namespace Ui {
class DDSViewer;
}
class DDSViewer : public QWidget
{
Q_OBJECT
public:
explicit DDSViewer(QWidget *parent = nullptr);
~DDSViewer();
//void SetDDSFile(const DDSFile *aDDSFile);
2025-09-05 19:45:44 +00:00
private slots:
//void MipmapIndexChanged(int aMipmapIndex);
2025-09-05 19:45:44 +00:00
private:
Ui::DDSViewer *ui;
//const DDSFile* mDDSFile;
2025-09-05 19:45:44 +00:00
};
#endif // DDSVIEWER_H