1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#pragma once #include <daguerre/image.hpp> struct window { daguerre::image<daguerre::hilbert_color> contents; int x; int y; bool is_shown; std::string title; window() : x(0), y(0), is_shown(false) {} };