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