diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2023-08-25 23:29:38 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2023-08-25 23:29:38 -0400 |
| commit | 135aefb1f8f48077fdafb898d547f7afcf027312 (patch) | |
| tree | 47cbbe51f943c90c5d4dc6970ee02c71a6316364 /src/window.hpp | |
| parent | e8d97366ef74db62d0927d7e4bf93a74bbd39d23 (diff) | |
impelemented imgui sans input handling
Diffstat (limited to 'src/window.hpp')
| -rw-r--r-- | src/window.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/window.hpp b/src/window.hpp index 3d66ed4..a3cebf4 100644 --- a/src/window.hpp +++ b/src/window.hpp @@ -10,6 +10,9 @@ #include <cassert> #include <GLFW/glfw3.h> #include <vulkan/vulkan.h> +#include "backends/imgui_impl_glfw.h" +#include "backends/imgui_impl_vulkan.h" +#include "imgui.h" const unsigned int MAX_FRAMES_IN_FLIGHT = 2; |
