mirror of
https://gitlab.com/manzerbredes/cgeditor.git
synced 2025-04-05 17:46:28 +02:00
12 lines
No EOL
231 B
C++
12 lines
No EOL
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
|