#pragma once #include "drawable.h" namespace gfx { struct Rectangle : public Drawable { float x; float y; float w; float h; void draw() override; } }