#include "SceneExplorer.h" #include "port/ui/PortMenu.h" #include "UIWidgets.h" #include "libultraship/src/Context.h" #include #include #include #include #include "spdlog/formatter.h" #include #include namespace Editor { SceneExplorerWindow::~SceneExplorerWindow() { SPDLOG_TRACE("destruct editor window"); } void SceneExplorerWindow::DrawElement() { ImGui::Text("This is your Scene Explorer window!"); if (ImGui::Button("Click Me")) { // Handle button click (example) } ImGui::End(); } }