mirror of
https://gitlab.com/es-de/emulationstation-de.git
synced 2025-04-02 10:51:45 -04:00
18 lines
282 B
C++
18 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
|