#pragma once #include struct window { daguerre::image contents; int x; int y; window(int width, int height) : contents(width, height), x(0), y(0) {} };