davey: work in progress...

This commit is contained in:
Michele Caini
2025-04-10 13:01:53 +02:00
parent 81b8d01e96
commit f7f30bc5b6
4 changed files with 101 additions and 6 deletions

View File

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

View File

@@ -4,6 +4,6 @@
namespace testbed {
void imgui_system(entt::registry &);
void imgui_system(const entt::registry &);
} // namespace testbed