openWindow ========== :doc:`/types/WindowModuleInterface/index`::openWindow Opens a new window. Declaration ----------- .. code-block:: cpp virtual WindowID openWindow(int width, int height, const std::string& title) = 0; Parameters ---------- .. list-table:: :width: 100% :header-rows: 1 :class: code-table * - Name - Type - Description * - width - int - The width of the window to open. * - height - int - The height of the window to open. * - title - const `std::string `_\& - The title of the window to open. Returns ------- A unique :doc:`/types/WindowID/index`.