Possible to create a vector or another container of Window.
This commit is contained in:
parent
e17764dc88
commit
7d1a0473ff
@ -19,6 +19,8 @@ namespace gui {
|
||||
public:
|
||||
Window();
|
||||
|
||||
Window(Window &&window) noexcept: wwindow(std::move(window.wwindow)) {}
|
||||
|
||||
~Window() noexcept = default;
|
||||
|
||||
[[nodiscard]] const std::unique_ptr<GLFWwindow, decltype(&delete_glfw_window)> &get_window() const { return wwindow; }
|
||||
|
Loading…
Reference in New Issue
Block a user