1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#pragma once #include <string> #include "box.h" namespace chisel { struct Window : public Box { std::string& title(); void title(std::string title); void run(); void fill_rect(float x, float y, float width, float height); }; }