|
- #ifndef LIGHT_H
- #define LIGHT_H
- #include "item.h"
-
- class Light : public Item
- {
- public:
- Light(const QString &type);
- QRectF boundingRect() const override;
- void paint(QPainter *painter,
- const QStyleOptionGraphicsItem *option,
- QWidget *) override;
- };
-
- #endif // LIGHT_H
|