#pragma once #include "engine/data/bounds.hpp" // NOLINTNEXTLINE(cppcoreguidelines-special-member-functions) class IWindow { public: virtual ~IWindow() noexcept = default; [[nodiscard]] virtual Bounds size() const noexcept = 0; };