15 lines
294 B
C++
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 ®istry) {
|
|
ImGui::Begin("testbed");
|
|
entt::davey(registry);
|
|
ImGui::End();
|
|
}
|
|
|
|
} // namespace testbed
|