testbed: work in progress (if only I had more time these days...)
This commit is contained in:
16
testbed/system/imgui_system.cpp
Normal file
16
testbed/system/imgui_system.cpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user