Files
entt/testbed/system/imgui_system.cpp
2025-04-10 13:01:53 +02:00

15 lines
294 B
C++

#include <entt/entity/registry.hpp>
#include <imgui.h>
#include <system/imgui_system.h>
#include <entt/davey/davey.hpp>
namespace testbed {
void imgui_system(const entt::registry &registry) {
ImGui::Begin("testbed");
entt::davey(registry);
ImGui::End();
}
} // namespace testbed