mirror of
https://gitlab.com/es-de/emulationstation-de.git
synced 2025-04-02 10:51:45 -04:00
20 lines
326 B
C++
20 lines
326 B
C++
#ifndef STOPELEMENT_H
|
|
#define STOPELEMENT_H
|
|
|
|
#include "styledelement.h"
|
|
|
|
namespace lunasvg {
|
|
|
|
class StopElement : public StyledElement {
|
|
public:
|
|
StopElement();
|
|
|
|
double offset() const;
|
|
Color stopColorWithOpacity() const;
|
|
|
|
std::unique_ptr<Node> clone() const;
|
|
};
|
|
|
|
} // namespace lunasvg
|
|
|
|
#endif // STOPELEMENT_H
|