#ifndef WINDOWSIZE_H #define WINDOWSIZE_H struct WindowSize final { WindowSize(int width, int height); int width; int height; }; #endif