27 lines
436 B
C++
27 lines
436 B
C++
#ifndef TECHSETVIEWER_H
|
|
#define TECHSETVIEWER_H
|
|
|
|
#include "xmaterialtechniqueset.h"
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class TechSetViewer;
|
|
}
|
|
|
|
class TechSetViewer : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TechSetViewer(QWidget *parent = nullptr);
|
|
~TechSetViewer();
|
|
|
|
void SetTechSet(const XMaterialTechniqueSet *aTechSet);
|
|
|
|
private:
|
|
Ui::TechSetViewer *ui;
|
|
};
|
|
|
|
#endif // TECHSETVIEWER_H
|