add imgui support

This commit is contained in:
2024-08-07 15:01:42 +02:00
parent e0d4dd053f
commit 2df849b63e
9 changed files with 186 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
#pragma once
#include <NazaraImgui/ImguiHandler.hpp>
namespace blitz {
namespace client {
class ImGuiDrawer : private Nz::ImguiHandler {
protected:
ImGuiDrawer();
~ImGuiDrawer();
virtual void OnRenderImgui() = 0;
};
} // namespace client
} // namespace blitz