Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
graphite/editor/include/inspectors/lightinspector.h
2024-01-03 16:05:02 -05:00

18 lines
No EOL
388 B
C++

#pragma once
#include <QFrame>
#include <component.hpp>
#include "inspectors/inspectorbase.h"
class LightInspector : public InspectorBase
{
Q_OBJECT
public:
explicit LightInspector(Light* light, QWidget* parent = nullptr);
InspectorBase* Clone(Component* component) override
{
return new LightInspector(static_cast<Light*>(component), parentWidget());
}
};