18 lines
439 B
C
18 lines
439 B
C
|
#pragma once
|
||
|
|
||
|
#include <QFrame>
|
||
|
#include <assetmanager.hpp>
|
||
|
|
||
|
#include "inspectors/inspectorbase.h"
|
||
|
|
||
|
class EnvironmentProbeInspector : public InspectorBase
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit EnvironmentProbeInspector(EnvironmentProbe* probe, QWidget* parent = nullptr);
|
||
|
|
||
|
InspectorBase* Clone(Component* component) override
|
||
|
{
|
||
|
return new EnvironmentProbeInspector(static_cast<EnvironmentProbe*>(component), nullptr);
|
||
|
}
|
||
|
};
|