imgui_system.cpp 292 B

1234567891011121314
  1. #include <entt/entity/registry.hpp>
  2. #include <imgui.h>
  3. #include <system/imgui_system.h>
  4. #include <entt/davey/davey.hpp>
  5. namespace testbed {
  6. void imgui_system(const entt::registry &registry) {
  7. ImGui::Begin("Davey");
  8. entt::davey(registry);
  9. ImGui::End();
  10. }
  11. } // namespace testbed