basic imgui integration

This commit is contained in:
2022-04-24 13:45:14 +03:00
parent 6aaeeb49a7
commit 9de9f2a9e7
6 changed files with 70 additions and 0 deletions
+4
View File
@@ -72,4 +72,8 @@ bool peripherals_glfw::should_close() {
return glfwWindowShouldClose(window);
}
GLFWwindow *peripherals_glfw::get_window() const {
return window;
}
END_NAMESPACE
+1
View File
@@ -13,6 +13,7 @@ public:
void swap_buffers() override;
void poll_events() override;
bool should_close() override;
GLFWwindow* get_window() const;
::GLFWwindow *window;
};