mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +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
|