mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-27 08:35:39 +00:00
19 lines
282 B
C
19 lines
282 B
C
|
#ifndef GRAPHICSELEMENT_H
|
||
|
#define GRAPHICSELEMENT_H
|
||
|
|
||
|
#include "styledelement.h"
|
||
|
|
||
|
namespace lunasvg {
|
||
|
|
||
|
class GraphicsElement : public StyledElement
|
||
|
{
|
||
|
public:
|
||
|
GraphicsElement(ElementId id);
|
||
|
|
||
|
Transform transform() const;
|
||
|
};
|
||
|
|
||
|
} // namespace lunasvg
|
||
|
|
||
|
#endif // GRAPHICSELEMENT_H
|