#pragma once #include #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); }; }