testbed: work in progress (if only I had more time these days...)

This commit is contained in:
Michele Caini
2025-04-07 17:46:21 +02:00
parent 36eba38f62
commit 0fa38bf0e0
7 changed files with 66 additions and 7 deletions

View File

@@ -0,0 +1,16 @@
#include <entt/entity/registry.hpp>
#include <imgui.h>
#include <system/imgui_system.h>
namespace testbed {
void imgui_system(entt::registry &registry) {
ImGui::Begin("testbed");
// ...
static_cast<void>(registry);
ImGui::End();
}
} // namespace testbed