cgeditor/src/components/Margin.hpp

12 lines
231 B
C++
Raw Normal View History

2022-02-12 19:13:34 +01:00
#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