imgui_system.cpp 275 B

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