18 lines
384 B
C
18 lines
384 B
C
|
#pragma once
|
||
|
|
||
|
#include <QFrame>
|
||
|
#include <assetmanager.hpp>
|
||
|
|
||
|
#include "inspectors/inspectorbase.h"
|
||
|
|
||
|
class CubemapInspector : public InspectorBase
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit CubemapInspector(Cubemap* cubemap, QWidget* parent = nullptr);
|
||
|
|
||
|
InspectorBase* Clone(Asset* asset) override
|
||
|
{
|
||
|
return new CubemapInspector(static_cast<Cubemap*>(asset), nullptr);
|
||
|
}
|
||
|
};
|