mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-02-17 04:25:39 +00:00
![Leon Styhre](/assets/img/avatar_default.png)
git-subtree-dir: external/lunasvg git-subtree-split: 7417baa0aff477f361e44e2aa793fdb0c7aae352
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
|