tomato/src/object_store_ui.hpp

20 lines
262 B
C++
Raw Normal View History

2024-07-16 15:02:52 +02:00
#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);
};