17 lines
275 B
C++
17 lines
275 B
C++
#include <entt/entity/registry.hpp>
|
|
#include <imgui.h>
|
|
#include <system/imgui_system.h>
|
|
|
|
namespace testbed {
|
|
|
|
void imgui_system(entt::registry ®istry) {
|
|
ImGui::Begin("testbed");
|
|
|
|
// ...
|
|
static_cast<void>(registry);
|
|
|
|
ImGui::End();
|
|
}
|
|
|
|
} // namespace testbed
|