mirror of
https://gitlab.com/manzerbredes/cgeditor.git
synced 2025-04-06 10:06:27 +02:00
12 lines
231 B
C++
12 lines
231 B
C++
![]() |
#include "Component.hpp"
|
||
|
|
||
|
namespace cgeditor {
|
||
|
class Margin : public Component {
|
||
|
|
||
|
public:
|
||
|
Margin(Status *s);
|
||
|
void Refresh();
|
||
|
void DrawMargin(Element e);
|
||
|
void DrawMargin(std::vector<Element> elts);
|
||
|
};
|
||
|
} // namespace cgeditor
|