#pragma once #include struct window { daguerre::image contents; int x; int y; bool is_shown; std::string title; window() : x(0), y(0), is_shown(false) {} };