mirror of
				https://github.com/RetroDECK/ES-DE.git
				synced 2025-04-10 19:15:13 +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
 | 
