#pragma once #include "engine/data/bounds.hpp" class IWindow { public: [[nodiscard]] virtual Bounds size() const noexcept = 0; };