add os inspector and minor stuff

This commit is contained in:
2024-07-16 15:02:52 +02:00
parent 18c37f9934
commit d5709c421c
8 changed files with 466 additions and 3 deletions

19
src/object_store_ui.hpp Normal file
View File

@ -0,0 +1,19 @@
#pragma once
#include <solanaceae/object_store/object_store.hpp>
#include "./imgui_entt_entity_editor.hpp"
class ObjectStoreUI {
ObjectStore2& _os;
MM::EntityEditor<Object> _ee;
public:
ObjectStoreUI(
ObjectStore2& os
);
void render(void);
};